From be245e0767626a80fa9b2fb6f8af088c2f8876f7 Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Mon, 1 May 2023 14:41:09 +0200 Subject: [PATCH] IDEMPIERE-5705 Field Event Change Log is not read only (#1816) --- .../iD10/oracle/202305011402_IDEMPIERE-5705.sql | 14 ++++++++++++++ .../postgresql/202305011402_IDEMPIERE-5705.sql | 11 +++++++++++ 2 files changed, 25 insertions(+) create mode 100644 migration/iD10/oracle/202305011402_IDEMPIERE-5705.sql create mode 100644 migration/iD10/postgresql/202305011402_IDEMPIERE-5705.sql diff --git a/migration/iD10/oracle/202305011402_IDEMPIERE-5705.sql b/migration/iD10/oracle/202305011402_IDEMPIERE-5705.sql new file mode 100644 index 0000000000..629b663813 --- /dev/null +++ b/migration/iD10/oracle/202305011402_IDEMPIERE-5705.sql @@ -0,0 +1,14 @@ +-- IDEMPIERE-5705 Field Event Change Log is not read only +SELECT register_migration_script('202305011402_IDEMPIERE-5705.sql') FROM dual; + +SET SQLBLANKLINES ON +SET DEFINE OFF + +-- May 1, 2023, 2:02:29 PM CEST +UPDATE AD_Field SET IsReadOnly='Y',Updated=TO_TIMESTAMP('2023-05-01 14:02:29','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54396 +; + +-- May 1, 2023, 2:02:37 PM CEST +UPDATE AD_Column SET IsUpdateable='N',Updated=TO_TIMESTAMP('2023-05-01 14:02:37','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54352 +; + diff --git a/migration/iD10/postgresql/202305011402_IDEMPIERE-5705.sql b/migration/iD10/postgresql/202305011402_IDEMPIERE-5705.sql new file mode 100644 index 0000000000..297b91b8b8 --- /dev/null +++ b/migration/iD10/postgresql/202305011402_IDEMPIERE-5705.sql @@ -0,0 +1,11 @@ +-- IDEMPIERE-5705 Field Event Change Log is not read only +SELECT register_migration_script('202305011402_IDEMPIERE-5705.sql') FROM dual; + +-- May 1, 2023, 2:02:29 PM CEST +UPDATE AD_Field SET IsReadOnly='Y',Updated=TO_TIMESTAMP('2023-05-01 14:02:29','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54396 +; + +-- May 1, 2023, 2:02:37 PM CEST +UPDATE AD_Column SET IsUpdateable='N',Updated=TO_TIMESTAMP('2023-05-01 14:02:37','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54352 +; +