generated from bcgov/quickstart-openshift
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Barrett Falk <bfalk@salussystems.com> Co-authored-by: cnesmithsalus <69365683+cnesmithsalus@users.noreply.github.com> Co-authored-by: afwilcox <alecwilcox@gmail.com>
- Loading branch information
1 parent
65f8685
commit 7695313
Showing
3 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
insert into case_management.action_code | ||
(action_code, short_description, long_description, active_ind, create_user_id, create_utc_timestamp) | ||
values | ||
('CNTCTBIOVT', 'Contacted biologist and/or veterinarian', 'Contacted biologist and/or veterinarian', 'Y', CURRENT_USER, CURRENT_TIMESTAMP), | ||
('DIRLOWLACT', 'Directed livestock owner to or explained sections 2, 26(2) and 75 of the Wildlife Act', 'Directed livestock owner to or explained sections 2, 26(2) and 75 of the Wildlife Act', 'Y', CURRENT_USER, CURRENT_TIMESTAMP), | ||
('CONTACTLPP', 'Contacted the Livestock Protection Program ("LPP") (cattle and sheep only)', 'Contacted the Livestock Protection Program ("LPP") (cattle and sheep only)', 'Y', CURRENT_USER, CURRENT_TIMESTAMP) | ||
on conflict do nothing; | ||
|
||
UPDATE case_management.action_type_action_xref | ||
SET display_order = 6 WHERE action_code = 'CNTCTBYLAW'; | ||
UPDATE case_management.action_type_action_xref | ||
SET display_order = 5 WHERE action_code = 'CNTCTGROUP'; | ||
|
||
insert into case_management.action_type_action_xref | ||
(action_type_code, action_code, display_order, active_ind, create_user_id, create_utc_timestamp) | ||
values | ||
('COSPRV&EDU', 'CNTCTBIOVT', 4, 'Y', CURRENT_USER, CURRENT_TIMESTAMP), | ||
('COSPRV&EDU', 'DIRLOWLACT', 7, 'Y', CURRENT_USER, CURRENT_TIMESTAMP), | ||
('COSPRV&EDU', 'CONTACTLPP', 8, 'Y', CURRENT_USER, CURRENT_TIMESTAMP) | ||
on conflict do nothing; | ||
|
||
UPDATE case_management.configuration | ||
SET configuration_value = 2 WHERE configuration_code = 'CDTABLEVER'; |