From 9071ae38d6733c4a59f02c7d26f6fd25ecb70d6a Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Sat, 18 May 2024 04:26:53 +0200 Subject: [PATCH] IDEMPIERE-5728 Fix RV_UnPosted view definition in dictionary (#2361) --- migration/iD11/oracle/202405151228_IDEMPIERE-5728.sql | 10 ++++++++++ .../iD11/postgresql/202405151228_IDEMPIERE-5728.sql | 7 +++++++ 2 files changed, 17 insertions(+) create mode 100644 migration/iD11/oracle/202405151228_IDEMPIERE-5728.sql create mode 100644 migration/iD11/postgresql/202405151228_IDEMPIERE-5728.sql diff --git a/migration/iD11/oracle/202405151228_IDEMPIERE-5728.sql b/migration/iD11/oracle/202405151228_IDEMPIERE-5728.sql new file mode 100644 index 0000000000..0e88421aed --- /dev/null +++ b/migration/iD11/oracle/202405151228_IDEMPIERE-5728.sql @@ -0,0 +1,10 @@ +-- IDEMPIERE-5728 +SELECT register_migration_script('202405151228_IDEMPIERE-5728.sql') FROM dual; + +SET SQLBLANKLINES ON +SET DEFINE OFF + +-- May 15, 2024, 12:28:30 PM CEST +UPDATE AD_ViewColumn SET ColumnName='RV_UnPosted_UU',Updated=TO_TIMESTAMP('2024-05-15 12:28:30','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_ViewColumn_ID=217690 +; + diff --git a/migration/iD11/postgresql/202405151228_IDEMPIERE-5728.sql b/migration/iD11/postgresql/202405151228_IDEMPIERE-5728.sql new file mode 100644 index 0000000000..e5da84f8db --- /dev/null +++ b/migration/iD11/postgresql/202405151228_IDEMPIERE-5728.sql @@ -0,0 +1,7 @@ +-- IDEMPIERE-5728 +SELECT register_migration_script('202405151228_IDEMPIERE-5728.sql') FROM dual; + +-- May 15, 2024, 12:28:30 PM CEST +UPDATE AD_ViewColumn SET ColumnName='RV_UnPosted_UU',Updated=TO_TIMESTAMP('2024-05-15 12:28:30','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_ViewColumn_ID=217690 +; +