Skip to content

Commit

Permalink
Creation of new script.
Browse files Browse the repository at this point in the history
  • Loading branch information
gregorylavery committed Nov 15, 2024
1 parent 0a711fa commit 1638d83
Showing 1 changed file with 52 additions and 0 deletions.
52 changes: 52 additions & 0 deletions migrations/sql/V1.32.0__CE-895.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
--
-- INSERT INTO hwcr_outcome_code
--
insert into
hwcr_outcome_code (
hwcr_outcome_code,
short_description,
long_description,
display_order,
active_ind,
create_user_id,
create_utc_timestamp,
update_user_id,
update_utc_timestamp
)
values
(
'EUTHCOS',
'Euthanized by COS',
'Euthanized by COS',
15,
true,
'FLYWAY',
now (),
'FLYWAY',
now ()
),
(
'EUTHOTH',
'Euthanized by Other',
'Euthanized by Other',
25,
true,
'FLYWAY',
now (),
'FLYWAY',
now ()
);

update case_management.hwcr_outcome_code
set
short_description = 'Dispatched by COS',
long_description = 'Dispatched by COS'
where
hwcr_outcome_code = 'DESTRYCOS';

update case_management.hwcr_outcome_code
set
short_description = 'Dispatched by Other',
long_description = 'Dispatched by Other'
where
hwcr_outcome_code = 'DESTRYOTH';

0 comments on commit 1638d83

Please sign in to comment.