Skip to content

Commit

Permalink
PO-573 Update config items for Welsh BUs (#487)
Browse files Browse the repository at this point in the history
  • Loading branch information
ian-readman authored Aug 6, 2024
1 parent 48a44dc commit 9622510
Showing 1 changed file with 20 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
/**
*
* OPAL Program
*
* MODULE : update_bu_config.sql
*
* DESCRIPTION : Sets 3 Welsh BUs to default Welsh, 1 Welsh BU to default English
*
* VERSION HISTORY:
*
* Date Author Version Nature of Change
* ---------- -------- -------- -------------------------------------------------------------
* 06/08/2024 I Readman 1.0 PO-573 Update Welsh Language configuration for 4 Welsh BUs
*
**/
UPDATE configuration_items SET item_value = 'CY' WHERE business_unit_id IN (53, 58, 78);
INSERT INTO configuration_items (configuration_item_id, item_name, business_unit_id, item_value)
VALUES (500000007, 'DEFAULT_DOCUMENT_LANGUAGE_PREFERENCE', 85, 'EN');
INSERT INTO configuration_items (configuration_item_id, item_name, business_unit_id, item_value)
VALUES (500000008, 'DEFAULT_HEARING_LANGUAGE_PREFERENCE', 85, 'EN');

0 comments on commit 9622510

Please sign in to comment.