6 lines
70 B
MySQL
6 lines
70 B
MySQL
|
begin;
|
||
|
create table if not exists "seasons" (
|
||
|
"year" text
|
||
|
);
|
||
|
commit;
|