Get rid of awardsmanagersties

This commit is contained in:
Nick Griffey 2024-01-26 21:34:13 -06:00
parent 9b628f778f
commit 8b8c6a000b
2 changed files with 3 additions and 15 deletions

View File

@ -0,0 +1,3 @@
begin;
alter table awardsmanagers drop column "tie";
commit;

View File

@ -1,15 +0,0 @@
begin;
create table if not exists awardsmanagersties (
"awardID" text,
"yearID" text,
"lgID" text,
"tie" text,
primary key("awardID","yearID","lgID")
);
insert into awardsmanagersties
select distinct awardID, yearID, lgID, tie
from awardsmanagers;
alter table awardsmanagers drop column "tie";
commit;