From ab576027f7861d8cd473d76b6e02a8714e4a2c37 Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Sat, 30 Dec 2023 14:24:56 +0100 Subject: [PATCH] IDEMPIERE-5943 Implement table partitioning support - fix menu (#2171) - minor fix to menu - make it centrally maintained and correct the process name --- .../oracle/202312301352_IDEMPIERE-5943.sql | 22 +++++++++++++++++++ .../202312301352_IDEMPIERE-5943.sql | 19 ++++++++++++++++ 2 files changed, 41 insertions(+) create mode 100644 migration/iD11/oracle/202312301352_IDEMPIERE-5943.sql create mode 100644 migration/iD11/postgresql/202312301352_IDEMPIERE-5943.sql diff --git a/migration/iD11/oracle/202312301352_IDEMPIERE-5943.sql b/migration/iD11/oracle/202312301352_IDEMPIERE-5943.sql new file mode 100644 index 0000000000..ebf3518f29 --- /dev/null +++ b/migration/iD11/oracle/202312301352_IDEMPIERE-5943.sql @@ -0,0 +1,22 @@ +-- IDEMPIERE-5943 Implement table partitioning support +SELECT register_migration_script('202312301352_IDEMPIERE-5943.sql') FROM dual; + +SET SQLBLANKLINES ON +SET DEFINE OFF + +-- Dec 30, 2023, 1:52:13 PM CET +UPDATE AD_Menu SET IsCentrallyMaintained='Y',Updated=TO_TIMESTAMP('2023-12-30 13:52:13','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Menu_ID=200230 +; + +-- Dec 30, 2023, 1:52:27 PM CET +UPDATE AD_Process SET Name='Create/Update Table Partition',Updated=TO_TIMESTAMP('2023-12-30 13:52:27','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_ID=200157 +; + +-- Dec 30, 2023, 1:52:27 PM CET +UPDATE AD_Menu SET Name='Create/Update Table Partition', Description='Process which create or update table partitions based on the table and column records', IsActive='Y',Updated=TO_TIMESTAMP('2023-12-30 13:52:27','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Menu_ID=200230 +; + +-- Dec 30, 2023, 1:52:37 PM CET +UPDATE AD_Menu SET IsCentrallyMaintained='Y',Updated=TO_TIMESTAMP('2023-12-30 13:52:37','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Menu_ID=200095 +; + diff --git a/migration/iD11/postgresql/202312301352_IDEMPIERE-5943.sql b/migration/iD11/postgresql/202312301352_IDEMPIERE-5943.sql new file mode 100644 index 0000000000..626665184c --- /dev/null +++ b/migration/iD11/postgresql/202312301352_IDEMPIERE-5943.sql @@ -0,0 +1,19 @@ +-- IDEMPIERE-5943 Implement table partitioning support +SELECT register_migration_script('202312301352_IDEMPIERE-5943.sql') FROM dual; + +-- Dec 30, 2023, 1:52:13 PM CET +UPDATE AD_Menu SET IsCentrallyMaintained='Y',Updated=TO_TIMESTAMP('2023-12-30 13:52:13','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Menu_ID=200230 +; + +-- Dec 30, 2023, 1:52:27 PM CET +UPDATE AD_Process SET Name='Create/Update Table Partition',Updated=TO_TIMESTAMP('2023-12-30 13:52:27','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_ID=200157 +; + +-- Dec 30, 2023, 1:52:27 PM CET +UPDATE AD_Menu SET Name='Create/Update Table Partition', Description='Process which create or update table partitions based on the table and column records', IsActive='Y',Updated=TO_TIMESTAMP('2023-12-30 13:52:27','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Menu_ID=200230 +; + +-- Dec 30, 2023, 1:52:37 PM CET +UPDATE AD_Menu SET IsCentrallyMaintained='Y',Updated=TO_TIMESTAMP('2023-12-30 13:52:37','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Menu_ID=200095 +; +