make award names match awards table

This commit is contained in:
2024-01-28 12:41:26 -06:00
parent 3c6880ee54
commit 6b3d32cef9
2 changed files with 11 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
begin;
update awardsshareplayers
set awardid = 'Cy Young Award'
where awardid = 'Cy Young';
update awardsshareplayers
set awardid = 'Most Valuable Player'
where awardid = 'MVP';
commit;