mirror of
https://github.com/rwf2/Rocket.git
synced 2024-12-29 05:42:35 +00:00
8 lines
180 B
SQL
8 lines
180 B
SQL
CREATE TABLE tasks (
|
|
id INTEGER PRIMARY KEY,
|
|
description VARCHAR NOT NULL,
|
|
completed BOOLEAN NOT NULL DEFAULT 0
|
|
);
|
|
|
|
INSERT INTO tasks (description) VALUES ("my first task");
|