mirror of
https://github.com/thewhitetulip/Tasks.git
synced 2025-04-26 13:49:18 +08:00
11 lines
209 B
SQL
11 lines
209 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
|
|
);
|
|
|