mirror of
https://github.com/SrIzan10/lofi.git
synced 2026-06-06 00:56:53 +00:00
6 lines
121 B
SQL
6 lines
121 B
SQL
CREATE TABLE `task` (
|
|
`id` text PRIMARY KEY NOT NULL,
|
|
`title` text NOT NULL,
|
|
`priority` integer DEFAULT 1 NOT NULL
|
|
);
|