From 3cd4cbb0c04b6017c2336657853551dc2e203ef6 Mon Sep 17 00:00:00 2001 From: anhefti Date: Thu, 11 Apr 2024 08:34:56 +0200 Subject: [PATCH] SEBSP-120 code gen for 2.0 and first migration SEBSERV-534 --- .../config/sql/base/V28__migration_task1_v2_0.sql | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/main/resources/config/sql/base/V28__migration_task1_v2_0.sql diff --git a/src/main/resources/config/sql/base/V28__migration_task1_v2_0.sql b/src/main/resources/config/sql/base/V28__migration_task1_v2_0.sql new file mode 100644 index 00000000..449819b6 --- /dev/null +++ b/src/main/resources/config/sql/base/V28__migration_task1_v2_0.sql @@ -0,0 +1,13 @@ +-- ---------------------------------------------------------------- +-- Add connection_id to lms_setup table SEBSERV-417 +-- ---------------------------------------------------------------- + +ALTER TABLE `lms_setup` +ADD COLUMN IF NOT EXISTS `connection_id` VARCHAR(255) NULL; + +-- ---------------------------------------------------------------- +-- Add clipboard policy to GUI SEBSERV-534 +-- ---------------------------------------------------------------- +UPDATE orientation SET y_position=21 WHERE config_attribute_id=1578 AND template_id=0; +INSERT IGNORE INTO orientation (config_attribute_id, template_id, view_id, group_id, x_position, y_position, width, height, title) VALUES + (1201, 0, 9, 'clipboardPolicy', 7, 18, 5, 2, 'NONE'); \ No newline at end of file