Skip to content

Commit

Permalink
fix: CE-1360 fix for truncated webEOC values (#896)
Browse files Browse the repository at this point in the history
  • Loading branch information
afwilcox authored Jan 24, 2025
1 parent 1a1638a commit 6e6e359
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 @@ -9911,10 +9911,10 @@ VALUES

UPDATE hwcr_complaint SET hwcr_complaint_nature_code = 'LIVNCOU' WHERE hwcr_complaint_nature_code = 'COUGARN';
DELETE FROM hwcr_complaint_nature_code WHERE hwcr_complaint_nature_code = 'COUGARN';
DELETE FROM hwcr_complaint_nature_code WHERE short_description = 'Livestock/pets - killed/injured - present/recent (Coyote/Bobcat)';
DELETE FROM hwcr_complaint_nature_code WHERE short_description = 'Livestock/pets - killed/injured - present/recent/suspected (Black/Grizzly Bear, Wolf, Cougar)';
DELETE FROM hwcr_complaint_nature_code WHERE short_description = 'Livestock/pets - killed/injured - not present (No Black/Grizzly Bear, Wolf, Cougar suspected)';
DELETE FROM hwcr_complaint_nature_code WHERE short_description = 'Livestock/pets - killed/injured - (No Black/Grizzly Bear, Wolf, Cougar suspected)';
DELETE FROM hwcr_complaint_nature_code WHERE long_description = 'Livestock/pets - killed/injured - present/recent (Coyote/Bobcat)';
DELETE FROM hwcr_complaint_nature_code WHERE long_description = 'Livestock/pets - killed/injured - present/recent/suspected (Black/Grizzly Bear, Wolf, Cougar)';
DELETE FROM hwcr_complaint_nature_code WHERE long_description = 'Livestock/pets - killed/injured - not present (No Black/Grizzly Bear, Wolf, Cougar suspected)';
DELETE FROM hwcr_complaint_nature_code WHERE long_description = 'Livestock/pets - killed/injured - (No Black/Grizzly Bear, Wolf, Cougar suspected)';

--------------------------
-- New Changes above this line
Expand Down

0 comments on commit 6e6e359

Please sign in to comment.