move hall of fame tables

This commit is contained in:
2024-01-28 19:07:59 -06:00
parent dfd2b78fb2
commit 8583b6332f
5 changed files with 36 additions and 27 deletions

View File

@@ -1,18 +0,0 @@
begin;
create table if not exists "halloffamereqs" (
"yearID" numeric,
"votedBy" text,
"ballots" numeric,
"needed" numeric,
"needed_note" text,
primary key("yearID","votedBy")
);
insert into halloffamereqs
select distinct yearid, votedby, ballots, needed, "needed_note"
from halloffame;
alter table halloffame drop column "ballots";
alter table halloffame drop column "needed";
alter table halloffame drop column "needed_note";
commit;