lahmanlite/sql/leagues.sql

15 lines
159 B
MySQL
Raw Normal View History

2024-01-28 03:48:57 +00:00
begin;
create table if not exists "leagues" (
"ID" text
);
insert into leagues values
("NA"),
("NL"),
("AA"),
("UA"),
("PL"),
("AL"),
("FL");
commit;