diff --git a/sql/common/V2.53.3__add_LRE_watershed.sql b/sql/common/V2.53.3__add_LRE_watershed.sql new file mode 100644 index 00000000..9e253ed3 --- /dev/null +++ b/sql/common/V2.53.3__add_LRE_watershed.sql @@ -0,0 +1,23 @@ +--(xmin ymax, xmax ymax, xmax ymin, xmin ymin, xmin ymax) + +-- add new watershed LRE Great Lakes Watershed +INSERT INTO watershed (id, + slug, + "name", + geometry, + office_id, + output_srid) +VALUES + ('09c53d56-a2b7-4c62-a180-2b78b6834a63', + 'great-lakes', + 'Great Lakes', + ST_GeomFromText('Polygon (( + 147342 3257822, + 1833194 3257822, + 1833194 1890482, + 147342 1890482, + 147342 3257822))', + 5070), + '586ac79a-083e-4c8c-8438-9585a88a4b3d', + 5070); + diff --git a/sql/common/V2.53.4__swap_winni_watershed_from_LRE_to_LRC.sql b/sql/common/V2.53.4__swap_winni_watershed_from_LRE_to_LRC.sql new file mode 100644 index 00000000..a4832814 --- /dev/null +++ b/sql/common/V2.53.4__swap_winni_watershed_from_LRE_to_LRC.sql @@ -0,0 +1,2 @@ +-- swap LRE for LRC (watershed was reassigned) +UPDATE watershed SET office_id = 'fa9b344c-911c-43e9-966c-b0e1357e385c' WHERE slug = 'lake-winnebago';