2024-01-26 19:27:58 +00:00
|
|
|
begin;
|
|
|
|
alter table "homegames" drop column "league.key";
|
2024-01-28 04:53:07 +00:00
|
|
|
|
|
|
|
update homegames
|
|
|
|
set "team.key" = 'WS9'
|
|
|
|
where "team.key" = 'WAS' and "year.key" between 1891 and 1899;
|
|
|
|
|
|
|
|
update homegames
|
|
|
|
set "team.key" = 'PHP'
|
|
|
|
where "team.key" = 'PH4' and "year.key" between 1890 and 1891;
|
2024-01-26 19:27:58 +00:00
|
|
|
commit;
|