Skip to content

Commit

Permalink
Update R__Create-Test-Data.sql
Browse files Browse the repository at this point in the history
Update SQL to make it deploy
  • Loading branch information
afwilcox authored Sep 27, 2024
1 parent d9d8aee commit 59625ca
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions migrations/migrations/R__Create-Test-Data.sql
Original file line number Diff line number Diff line change
Expand Up @@ -9483,9 +9483,9 @@ SELECT
now() ON CONFLICT
DO NOTHING;

UPDATE feature_agency_xref SET active_ind = false WHERE feature_code = 'METH_FLTR' AND agancy_code = 'COS'
UPDATE feature_agency_xref SET active_ind = false WHERE feature_code = 'METH_FLTR' AND agancy_code = 'PARKS'
UPDATE feature_agency_xref SET active_ind = true WHERE feature_code = 'METH_FLTR' AND agancy_code = 'EPO'
UPDATE feature_agency_xref SET active_ind = false WHERE feature_code = 'METH_FLTR' AND agency_code = 'COS';
UPDATE feature_agency_xref SET active_ind = false WHERE feature_code = 'METH_FLTR' AND agency_code = 'PARKS';
UPDATE feature_agency_xref SET active_ind = true WHERE feature_code = 'METH_FLTR' AND agency_code = 'EPO';

--------------------------
-- New Changes above this line
Expand All @@ -9494,4 +9494,4 @@ UPDATE configuration
SET
configuration_value = configuration_value::int + 1
WHERE
configuration_code = 'CDTABLEVER';
configuration_code = 'CDTABLEVER';

0 comments on commit 59625ca

Please sign in to comment.