mirror of
https://github.com/thewhitetulip/Tasks.git
synced 2025-04-24 13:48:58 +08:00
11 lines
216 B
SQL
11 lines
216 B
SQL
CREATE TABLE task (
|
|
id integer primary key autoincrement,
|
|
title varchar(100),
|
|
content text,
|
|
is_deleted char(1) default 'N',
|
|
created_date timestamp,
|
|
last_modified_at timestamp,
|
|
finish_date timestamp
|
|
, priority int);
|
|
|