From 70db8e18af5dc72aa279be03906e454bcabf3bea Mon Sep 17 00:00:00 2001 From: Heng Sin Low Date: Mon, 12 Aug 2013 17:57:58 +0800 Subject: [PATCH] IDEMPIERE-1260 Error message saving Purchasing line on Product record. --- .../i1.0c-release/oracle/201308120955_IDEMPIERE-1260.sql | 8 ++++++++ .../postgresql/201308120955_IDEMPIERE-1260.sql | 8 ++++++++ 2 files changed, 16 insertions(+) create mode 100644 migration/i1.0c-release/oracle/201308120955_IDEMPIERE-1260.sql create mode 100644 migration/i1.0c-release/postgresql/201308120955_IDEMPIERE-1260.sql diff --git a/migration/i1.0c-release/oracle/201308120955_IDEMPIERE-1260.sql b/migration/i1.0c-release/oracle/201308120955_IDEMPIERE-1260.sql new file mode 100644 index 0000000000..8a68306864 --- /dev/null +++ b/migration/i1.0c-release/oracle/201308120955_IDEMPIERE-1260.sql @@ -0,0 +1,8 @@ +-- Aug 12, 2013 5:52:23 PM MYT +-- IDEMPIERE-1207 Fixed inconsistent error message for well known database exception +UPDATE AD_Column SET IsUpdateable='N', DefaultValue=NULL,Updated=TO_DATE('2013-08-12 17:52:23','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=2705 +; + +SELECT register_migration_script('201308120955_IDEMPIERE-1260.sql') FROM dual +; + diff --git a/migration/i1.0c-release/postgresql/201308120955_IDEMPIERE-1260.sql b/migration/i1.0c-release/postgresql/201308120955_IDEMPIERE-1260.sql new file mode 100644 index 0000000000..53cae453df --- /dev/null +++ b/migration/i1.0c-release/postgresql/201308120955_IDEMPIERE-1260.sql @@ -0,0 +1,8 @@ +-- Aug 12, 2013 5:52:23 PM MYT +-- IDEMPIERE-1207 Fixed inconsistent error message for well known database exception +UPDATE AD_Column SET IsUpdateable='N', DefaultValue=NULL,Updated=TO_TIMESTAMP('2013-08-12 17:52:23','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=2705 +; + +SELECT register_migration_script('201308120955_IDEMPIERE-1260.sql') FROM dual +; +