todo sqlite and inmemory repo

This commit is contained in:
2025-02-06 16:33:49 -05:00
parent 21747e0f72
commit bb3d9abb7e
7 changed files with 233 additions and 12 deletions

View File

@@ -1,4 +1,5 @@
CREATE TABLE todo(
id INT PRIMARY KEY,
name VARCHAR(50)
id INTEGER PRIMARY KEY,
name VARCHAR(50),
done INTEGER
);