Skip to content

Commit d32e1d6

Browse files
authored
Merge pull request #606 from USACE/add_pr
Add Caribbean District, Add Puerto Rico, and Change Great Lakes Name
2 parents c6fd326 + 2c8cbe2 commit d32e1d6

1 file changed

Lines changed: 30 additions & 0 deletions

File tree

sql/common/V2.66.0__add_PR.sql

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
-- add saa district
2+
INSERT INTO office (id, symbol, name) VALUES
3+
('cae8e3a6-37a1-4fbc-856b-acb68dbf666c','SAA','Caribbean District');
4+
5+
-- add new watershed SAA Puerto Rico
6+
INSERT INTO watershed (id,
7+
slug,
8+
"name",
9+
geometry,
10+
office_id,
11+
output_srid)
12+
VALUES
13+
('26d1728f-3ce1-4a84-b0e6-bbdc7ead1f83',
14+
'puerto-rico',
15+
'Puerto Rico and US Virgin Islands',
16+
ST_GeomFromText('Polygon ((
17+
2637127 588520,
18+
3880772 588520,
19+
3880772 -604377,
20+
2637127 -604377,
21+
2637127 588520))',
22+
5070),
23+
'cae8e3a6-37a1-4fbc-856b-acb68dbf666c',
24+
5070);
25+
26+
27+
-- update Great Lakes watershed name
28+
UPDATE watershed SET name = 'Great Lakes Basin' WHERE slug = 'great-lakes';
29+
30+

0 commit comments

Comments
 (0)