forked from OrgGo/Tasks
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
|
||
|
);
|
||
|
|