2021-03-11 11:40:25 +08:00

7 lines
181 B
SQL

create table test_table
(
id bigint(20) primary key,
content varchar(255),
gmt_create datetime default now(),
gmt_modified datetime default now()
);