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 +; +