diff --git a/migration/i2.1/oracle/201507151028_IDEMPIERE-2672.sql b/migration/i2.1/oracle/201507151028_IDEMPIERE-2672.sql new file mode 100644 index 0000000000..5b3a94078d --- /dev/null +++ b/migration/i2.1/oracle/201507151028_IDEMPIERE-2672.sql @@ -0,0 +1,11 @@ +SET SQLBLANKLINES ON +SET DEFINE OFF + +-- IDEMPIERE-2672 +-- Jul 15, 2015 10:28:04 AM COT +UPDATE AD_Column SET AD_Reference_ID=30, IsUpdateable='N',Updated=TO_DATE('2015-07-15 10:28:04','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=1809 +; + +SELECT register_migration_script('201507151028_IDEMPIERE-2672.sql') FROM dual +; + diff --git a/migration/i2.1/postgresql/201507151028_IDEMPIERE-2672.sql b/migration/i2.1/postgresql/201507151028_IDEMPIERE-2672.sql new file mode 100644 index 0000000000..856077b2b0 --- /dev/null +++ b/migration/i2.1/postgresql/201507151028_IDEMPIERE-2672.sql @@ -0,0 +1,8 @@ +-- IDEMPIERE-2672 +-- Jul 15, 2015 10:28:04 AM COT +UPDATE AD_Column SET AD_Reference_ID=30, IsUpdateable='N',Updated=TO_TIMESTAMP('2015-07-15 10:28:04','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=1809 +; + +SELECT register_migration_script('201507151028_IDEMPIERE-2672.sql') FROM dual +; +