Skip to content

Commit

Permalink
Update dump.sql
Browse files Browse the repository at this point in the history
  • Loading branch information
notrab authored Nov 6, 2024
1 parent 9d84412 commit 7cfee1f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion dump.sql
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ BEGIN TRANSACTION;

CREATE TABLE todos (
id INTEGER PRIMARY KEY AUTOINCREMENT,
description TEXT
description TEXT,
completed integer DEFAULT false NOT NULL
);

COMMIT;

0 comments on commit 7cfee1f

Please sign in to comment.