From 60c119b30434d1ffeb10ca292d5209b61c09453f Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Thu, 9 Apr 2015 12:11:28 -0500 Subject: [PATCH] IDEMPIERE-2535 Date material policy BUG on receipt --- migration/i2.1/oracle/201504091207_IDEMPIERE-2535.sql | 11 +++++++++++ .../i2.1/postgresql/201504091207_IDEMPIERE-2535.sql | 8 ++++++++ 2 files changed, 19 insertions(+) create mode 100644 migration/i2.1/oracle/201504091207_IDEMPIERE-2535.sql create mode 100644 migration/i2.1/postgresql/201504091207_IDEMPIERE-2535.sql diff --git a/migration/i2.1/oracle/201504091207_IDEMPIERE-2535.sql b/migration/i2.1/oracle/201504091207_IDEMPIERE-2535.sql new file mode 100644 index 0000000000..e418a83563 --- /dev/null +++ b/migration/i2.1/oracle/201504091207_IDEMPIERE-2535.sql @@ -0,0 +1,11 @@ +SET SQLBLANKLINES ON +SET DEFINE OFF + +-- IDEMPIERE-2535 Date material policy BUG on receipt +-- Apr 9, 2015 12:04:34 PM COT +UPDATE AD_Column SET IsParent='Y', IsUpdateable='N',Updated=TO_DATE('2015-04-09 12:04:34','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=208342 +; + +SELECT register_migration_script('201504091207_IDEMPIERE-2535.sql') FROM dual +; + diff --git a/migration/i2.1/postgresql/201504091207_IDEMPIERE-2535.sql b/migration/i2.1/postgresql/201504091207_IDEMPIERE-2535.sql new file mode 100644 index 0000000000..00181ebf59 --- /dev/null +++ b/migration/i2.1/postgresql/201504091207_IDEMPIERE-2535.sql @@ -0,0 +1,8 @@ +-- IDEMPIERE-2535 Date material policy BUG on receipt +-- Apr 9, 2015 12:04:34 PM COT +UPDATE AD_Column SET IsParent='Y', IsUpdateable='N',Updated=TO_TIMESTAMP('2015-04-09 12:04:34','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=208342 +; + +SELECT register_migration_script('201504091207_IDEMPIERE-2535.sql') FROM dual +; +