Skip to content

Commit

Permalink
update neck snare to snare
Browse files Browse the repository at this point in the history
  • Loading branch information
jon-funk committed Jan 17, 2025
1 parent b92a657 commit 1a4ed90
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,4 +62,4 @@ services:
working_dir: "/app"
depends_on:
migrations:
condition: service_started
condition: service_completed_successfully
16 changes: 16 additions & 0 deletions migrations/sql/R__code-table-data.sql.sql
Original file line number Diff line number Diff line change
Expand Up @@ -5523,6 +5523,22 @@ set
where
equipment_code = 'TRCAM';

INSERT INTO
equipment_code (equipment_code, short_description, long_description, display_order, active_ind, create_user_id, create_utc_timestamp, update_user_id, update_utc_timestamp)
VALUES
('SNR', 'Snare', 'Snare', 5, true, 'FLYWAY', now(), 'FLYWAY', now())
ON conflict do nothing;

UPDATE equipment
SET
equipment_code = 'SNR'
WHERE
equipment_code = 'NKSNR';

DELETE FROM
equipment_code
WHERE
equipment_code = 'NKSNR';

--------------------------
-- Outcome code updates
Expand Down

0 comments on commit 1a4ed90

Please sign in to comment.