Drop league id columns

This commit is contained in:
Nick Griffey 2024-01-26 14:03:29 -06:00
parent 89ba3794a9
commit 9b628f778f
6 changed files with 19 additions and 0 deletions

3
sql/2nf/batting.sql Normal file
View File

@ -0,0 +1,3 @@
begin;
alter table batting drop column "lgID";
commit;

3
sql/2nf/fielding.sql Normal file
View File

@ -0,0 +1,3 @@
begin;
alter table fielding drop column "lgID";
commit;

4
sql/2nf/fieldingpost.sql Normal file
View File

@ -0,0 +1,4 @@
begin;
alter table fieldingpost drop column "teamID";
alter table fieldingpost drop column "lgID";
commit;

3
sql/2nf/managers.sql Normal file
View File

@ -0,0 +1,3 @@
begin;
alter table managers drop column "lgID";
commit;

3
sql/2nf/managershalf.sql Normal file
View File

@ -0,0 +1,3 @@
begin;
alter table managershalf drop column "lgID";
commit;

3
sql/2nf/pitching.sql Normal file
View File

@ -0,0 +1,3 @@
begin;
alter table pitching drop column "lgID";
commit;