lahmanlite/sql/parks.sql

11 lines
325 B
MySQL
Raw Normal View History

2024-01-26 03:43:23 +00:00
begin;
2024-01-26 17:47:18 +00:00
alter table parks drop column "park.alias";
2024-01-28 01:05:31 +00:00
-- insert some missing parks
insert into parks values
('ARL03', 'Globe Life Field', 'Arlington', 'TX', 'US'),
('BUF05', 'Sahlen Field', 'Buffalo', 'NY', 'US'),
('DUN01', 'TD Ballpark', 'Dunedin', 'FL', 'US'),
('DYE01', 'Field of Dreams', 'Dyersville', 'IA', 'US');
2024-01-26 03:43:23 +00:00
commit;