5 lines
56 B
MySQL
5 lines
56 B
MySQL
|
create table my_table (
|
||
|
id bigint,
|
||
|
date date
|
||
|
);
|