From 1052b6fc7a77981c24282ac209bd55657848dce4 Mon Sep 17 00:00:00 2001 From: Heng Sin Low Date: Mon, 12 Aug 2013 16:29:36 +0800 Subject: [PATCH] =?UTF-8?q?IDEMPIERE-1255=20Can=E2=80=99t=20create=20a=20r?= =?UTF-8?q?ecord=20in=20Payment=20Processor=20window.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../oracle/201308120824_IDEMPIERE-1255.sql | 13 +++++++++++++ .../postgresql/201308120824_IDEMPIERE-1255.sql | 13 +++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 migration/i1.0c-release/oracle/201308120824_IDEMPIERE-1255.sql create mode 100644 migration/i1.0c-release/postgresql/201308120824_IDEMPIERE-1255.sql diff --git a/migration/i1.0c-release/oracle/201308120824_IDEMPIERE-1255.sql b/migration/i1.0c-release/oracle/201308120824_IDEMPIERE-1255.sql new file mode 100644 index 0000000000..8346d7e8be --- /dev/null +++ b/migration/i1.0c-release/oracle/201308120824_IDEMPIERE-1255.sql @@ -0,0 +1,13 @@ +-- Aug 12, 2013 4:21:30 PM MYT +-- IDEMPIERE-1207 Fixed inconsistent error message for well known database exception +UPDATE AD_Column SET DefaultValue='@#AD_Client_ID@',Updated=TO_DATE('2013-08-12 16:21:30','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=5163 +; + +-- Aug 12, 2013 4:21:53 PM MYT +-- IDEMPIERE-1207 Fixed inconsistent error message for well known database exception +UPDATE AD_Column SET DefaultValue='@#AD_Org_ID@',Updated=TO_DATE('2013-08-12 16:21:53','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=5164 +; + +SELECT register_migration_script('201308120824_IDEMPIERE-1255.sql') FROM dual +; + diff --git a/migration/i1.0c-release/postgresql/201308120824_IDEMPIERE-1255.sql b/migration/i1.0c-release/postgresql/201308120824_IDEMPIERE-1255.sql new file mode 100644 index 0000000000..6bab7dc18b --- /dev/null +++ b/migration/i1.0c-release/postgresql/201308120824_IDEMPIERE-1255.sql @@ -0,0 +1,13 @@ +-- Aug 12, 2013 4:21:30 PM MYT +-- IDEMPIERE-1207 Fixed inconsistent error message for well known database exception +UPDATE AD_Column SET DefaultValue='@#AD_Client_ID@',Updated=TO_TIMESTAMP('2013-08-12 16:21:30','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=5163 +; + +-- Aug 12, 2013 4:21:53 PM MYT +-- IDEMPIERE-1207 Fixed inconsistent error message for well known database exception +UPDATE AD_Column SET DefaultValue='@#AD_Org_ID@',Updated=TO_TIMESTAMP('2013-08-12 16:21:53','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=5164 +; + +SELECT register_migration_script('201308120824_IDEMPIERE-1255.sql') FROM dual +; +