diff --git a/docs/tutorials/getting-started-sqlite.md b/docs/tutorials/getting-started-sqlite.md index bebd860b4d..76c2dfc97e 100644 --- a/docs/tutorials/getting-started-sqlite.md +++ b/docs/tutorials/getting-started-sqlite.md @@ -32,7 +32,7 @@ create a file named `schema.sql` with the following contents: ```sql CREATE TABLE authors ( - id INTEGER PRIMARY KEY AUTOINCREMENT, + id INTEGER PRIMARY KEY, name text NOT NULL, bio text );