mirror of
https://github.com/PowerJob/PowerJob.git
synced 2025-07-17 00:00:04 +08:00
7 lines
181 B
SQL
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()
|
|
); |