mirror of
https://github.com/thewhitetulip/Tasks.git
synced 2025-04-28 13:48:51 +08:00
11 lines
209 B
MySQL
11 lines
209 B
MySQL
![]() |
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
|
||
|
);
|
||
|
|