You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
348 B
13 lines
348 B
2 years ago
|
-- auto-generated definition
|
||
|
create table task
|
||
|
(
|
||
|
id int auto_increment
|
||
|
primary key,
|
||
|
name varchar(200) not null,
|
||
|
property varchar(200) not null,
|
||
|
create_time datetime null comment '创建时间戳',
|
||
|
last_edit_time datetime null comment '最后修改时间戳'
|
||
|
)
|
||
|
charset = utf8;
|
||
|
|