lahmanlite/sql/franchiseseasons.sql

12 lines
239 B
MySQL
Raw Normal View History

2024-01-28 00:05:45 +00:00
begin;
alter table "teams" rename to "franchiseseasons";
2024-01-28 03:07:24 +00:00
update franchiseseasons
set teamid = 'WS9'
where teamid = 'WAS' and franchid = 'WAS';
update franchiseseasons
set teamid = 'PHP'
where teamid = 'PH4' and franchid = 'PHQ';
2024-01-28 00:05:45 +00:00
commit;