added database

This commit is contained in:
Ide
2025-12-28 19:54:32 +01:00
parent 62996052f2
commit 5c88c876b3
6 changed files with 91 additions and 37 deletions
+6
View File
@@ -0,0 +1,6 @@
CREATE TABLE
IF NOT EXISTS list (
itemname TEXT NOT NULL PRIMARY KEY,
checked INT NOT NULL, -- actually a boolean
amount INT NOT NULL
) STRICT;