16 lines
310 B
PL/PgSQL
16 lines
310 B
PL/PgSQL
begin;
|
|
create table if not exists "leagues" (
|
|
"ID" text,
|
|
"name" text
|
|
);
|
|
|
|
insert into leagues values
|
|
("NA","National Association"),
|
|
("NL","National League"),
|
|
("AA","American Association"),
|
|
("UA","Union Association"),
|
|
("PL","Player's League"),
|
|
("AL","American League"),
|
|
("FL","Federal League");
|
|
commit;
|