From cdfa764b08074867f01d29ff7f2e0405cdfdb9b6 Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Wed, 21 Aug 2024 08:38:03 +0200 Subject: [PATCH] IDEMPIERE-6216 Usability - Initial Tenant Setup - Missing required parameters (#2441) --- migration/iD11/oracle/202408201236_IDEMPIERE-6216.sql | 10 ++++++++++ .../iD11/postgresql/202408201236_IDEMPIERE-6216.sql | 7 +++++++ 2 files changed, 17 insertions(+) create mode 100644 migration/iD11/oracle/202408201236_IDEMPIERE-6216.sql create mode 100644 migration/iD11/postgresql/202408201236_IDEMPIERE-6216.sql diff --git a/migration/iD11/oracle/202408201236_IDEMPIERE-6216.sql b/migration/iD11/oracle/202408201236_IDEMPIERE-6216.sql new file mode 100644 index 0000000000..1f7e7bc4fd --- /dev/null +++ b/migration/iD11/oracle/202408201236_IDEMPIERE-6216.sql @@ -0,0 +1,10 @@ +-- IDEMPIERE-6216 +SELECT register_migration_script('202408201236_IDEMPIERE-6216.sql') FROM dual; + +SET SQLBLANKLINES ON +SET DEFINE OFF + +-- Aug 20, 2024, 12:36:08 PM CEST +UPDATE AD_Process_Para SET MandatoryLogic='@UseDefaultCoA@=N',Updated=TO_TIMESTAMP('2024-08-20 12:36:08','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_Para_ID=53296 +; + diff --git a/migration/iD11/postgresql/202408201236_IDEMPIERE-6216.sql b/migration/iD11/postgresql/202408201236_IDEMPIERE-6216.sql new file mode 100644 index 0000000000..f88dfade9b --- /dev/null +++ b/migration/iD11/postgresql/202408201236_IDEMPIERE-6216.sql @@ -0,0 +1,7 @@ +-- IDEMPIERE-6216 +SELECT register_migration_script('202408201236_IDEMPIERE-6216.sql') FROM dual; + +-- Aug 20, 2024, 12:36:08 PM CEST +UPDATE AD_Process_Para SET MandatoryLogic='@UseDefaultCoA@=N',Updated=TO_TIMESTAMP('2024-08-20 12:36:08','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_Para_ID=53296 +; +