2024-01-26 19:27:58 +00:00
|
|
|
begin;
|
|
|
|
alter table "appearances" drop column "lgID";
|
2024-01-28 04:53:07 +00:00
|
|
|
|
|
|
|
update appearances
|
|
|
|
set teamid = 'WS9'
|
|
|
|
where teamid = 'WAS' and yearid between 1891 and 1899;
|
|
|
|
|
|
|
|
update appearances
|
|
|
|
set teamid = 'PHP'
|
|
|
|
where teamid = 'PH4' and yearid between 1890 and 1891;
|
2024-01-26 19:27:58 +00:00
|
|
|
commit;
|