From 5f90a9f0cf5515b8fc22f4253a3eeeba7b2e8f0b Mon Sep 17 00:00:00 2001 From: Elaine Tan Date: Thu, 26 Jun 2014 14:41:41 +0800 Subject: [PATCH] IDEMPIERE-2023 Scheduler Recipient record has incorrect defaults --- .../i2.0z/oracle/201406261439_IDEMPIERE-2023.sql | 14 ++++++++++++++ .../postgresql/201406261439_IDEMPIERE-2023.sql | 11 +++++++++++ 2 files changed, 25 insertions(+) create mode 100644 migration/i2.0z/oracle/201406261439_IDEMPIERE-2023.sql create mode 100644 migration/i2.0z/postgresql/201406261439_IDEMPIERE-2023.sql diff --git a/migration/i2.0z/oracle/201406261439_IDEMPIERE-2023.sql b/migration/i2.0z/oracle/201406261439_IDEMPIERE-2023.sql new file mode 100644 index 0000000000..e58c5b55ad --- /dev/null +++ b/migration/i2.0z/oracle/201406261439_IDEMPIERE-2023.sql @@ -0,0 +1,14 @@ +SET SQLBLANKLINES ON +SET DEFINE OFF + +-- Jun 26, 2014 1:04:37 PM SGT +-- IDEMPIERE-2023 Scheduler Recipient record has incorrect defaults +UPDATE AD_Column SET DefaultValue='-1',Updated=TO_DATE('2014-06-26 13:04:36','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=11504 +; + +-- Jun 26, 2014 1:04:54 PM SGT +UPDATE AD_Column SET DefaultValue='-1',Updated=TO_DATE('2014-06-26 13:04:54','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=11512 +; + +SELECT register_migration_script('201406261439_IDEMPIERE-2023.sql') FROM dual +; \ No newline at end of file diff --git a/migration/i2.0z/postgresql/201406261439_IDEMPIERE-2023.sql b/migration/i2.0z/postgresql/201406261439_IDEMPIERE-2023.sql new file mode 100644 index 0000000000..47cde8cb53 --- /dev/null +++ b/migration/i2.0z/postgresql/201406261439_IDEMPIERE-2023.sql @@ -0,0 +1,11 @@ +-- Jun 26, 2014 1:04:37 PM SGT +-- IDEMPIERE-2023 Scheduler Recipient record has incorrect defaults +UPDATE AD_Column SET DefaultValue='-1',Updated=TO_TIMESTAMP('2014-06-26 13:04:36','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=11504 +; + +-- Jun 26, 2014 1:04:54 PM SGT +UPDATE AD_Column SET DefaultValue='-1',Updated=TO_TIMESTAMP('2014-06-26 13:04:54','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=11512 +; + +SELECT register_migration_script('201406261439_IDEMPIERE-2023.sql') FROM dual +; \ No newline at end of file