Skip to content

Commit

Permalink
Merge pull request #230 from sgrif/fix/sqlite_migrations
Browse files Browse the repository at this point in the history
Fix the sqlite migration in the getting started guide
  • Loading branch information
weiznich authored Sep 6, 2024
2 parents 71ad931 + b4d9e50 commit 3626c40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/guides/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ CREATE TABLE posts (

```sql
CREATE TABLE posts (
id INTEGER NOT NULL AUTOINCREMENT PRIMARY KEY,
id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
title VARCHAR NOT NULL,
body TEXT NOT NULL,
published BOOLEAN NOT NULL DEFAULT 0
Expand Down

0 comments on commit 3626c40

Please sign in to comment.