15 lines
159 B
MySQL
15 lines
159 B
MySQL
|
begin;
|
||
|
create table if not exists "leagues" (
|
||
|
"ID" text
|
||
|
);
|
||
|
|
||
|
insert into leagues values
|
||
|
("NA"),
|
||
|
("NL"),
|
||
|
("AA"),
|
||
|
("UA"),
|
||
|
("PL"),
|
||
|
("AL"),
|
||
|
("FL");
|
||
|
commit;
|