lahmanlite/sql/halloffame.sql

14 lines
305 B
MySQL
Raw Normal View History

2024-01-27 20:47:17 +00:00
begin;
update halloffame
set ballots = null
where ballots = '' or ballots = 'NA';
update halloffame
set needed = null
where needed = '' or needed = 'NA';
2024-01-29 01:07:59 +00:00
alter table halloffame drop column "ballots";
alter table halloffame drop column "needed";
alter table halloffame drop column "needed_note";
2024-01-27 20:47:17 +00:00
commit;