mirror of
https://github.com/rwf2/Rocket.git
synced 2025-01-04 00:32:39 +00:00
8 lines
196 B
SQL
8 lines
196 B
SQL
CREATE TABLE tasks (
|
|
id INTEGER PRIMARY KEY AUTOINCREMENT,
|
|
description VARCHAR NOT NULL,
|
|
completed BOOLEAN NOT NULL DEFAULT 0
|
|
);
|
|
|
|
INSERT INTO tasks (description) VALUES ("demo task");
|