mirror of https://github.com/rwf2/Rocket.git
8 lines
180 B
MySQL
8 lines
180 B
MySQL
|
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");
|