fix team codes

This commit is contained in:
Nick Griffey 2024-01-27 21:07:24 -06:00
parent c5c4cbd1cf
commit b30302eea6
1 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,11 @@
begin;
alter table "teams" rename to "franchiseseasons";
update franchiseseasons
set teamid = 'WS9'
where teamid = 'WAS' and franchid = 'WAS';
update franchiseseasons
set teamid = 'PHP'
where teamid = 'PH4' and franchid = 'PHQ';
commit;