8 lines
187 B
SQL
8 lines
187 B
SQL
CREATE TABLE `todos` (
|
|
`id` integer PRIMARY KEY NOT NULL,
|
|
`user_id` integer NOT NULL,
|
|
`title` text NOT NULL,
|
|
`completed` integer DEFAULT 0 NOT NULL,
|
|
`created_at` integer NOT NULL
|
|
);
|