generated from hmcts/spring-boot-template
-
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.
PO-573 Update config items for Welsh BUs (#487)
- Loading branch information
1 parent
48a44dc
commit 9622510
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
20 changes: 20 additions & 0 deletions
20
src/main/resources/db/migration/V20240806_228__update_welsh_bu_config.sql
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,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'); |