Add missing parks
This commit is contained in:
parent
7495572192
commit
9c955df284
|
@ -1,8 +0,0 @@
|
|||
begin;
|
||||
-- insert some missing parks
|
||||
insert into parks values
|
||||
('ARL03', 'Globe Life Field', null, 'Arlington', 'TX', 'US'),
|
||||
('BUF05', 'Sahlen Field', null, 'Buffalo', 'NY', 'US'),
|
||||
('DUN01', 'TD Ballpark', null, 'Dunedin', 'FL', 'US'),
|
||||
('DYE01', 'Field of Dreams', null, 'Dyersville', 'IA', 'US');
|
||||
commit;
|
|
@ -21,4 +21,11 @@ from aliases
|
|||
where a != '';
|
||||
|
||||
alter table parks drop column "park.alias";
|
||||
|
||||
-- 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');
|
||||
commit;
|
||||
|
|
Loading…
Reference in New Issue