MaCH repo
This commit is contained in:
5
07_todo_db_per_user/create_todos_table.sql
Normal file
5
07_todo_db_per_user/create_todos_table.sql
Normal file
@@ -0,0 +1,5 @@
|
||||
CREATE TABLE IF NOT EXISTS todos (
|
||||
id INTEGER PRIMARY KEY AUTOINCREMENT,
|
||||
title TEXT NOT NULL,
|
||||
finished INTEGER CHECK(finished IN (1))
|
||||
);
|
||||
Reference in New Issue
Block a user