diff --git a/migration/i3.1/oracle/201601271704_IDEMPIERE-3015.sql b/migration/i3.1/oracle/201601271704_IDEMPIERE-3015.sql new file mode 100644 index 0000000000..d013abf6c7 --- /dev/null +++ b/migration/i3.1/oracle/201601271704_IDEMPIERE-3015.sql @@ -0,0 +1,11 @@ +SET SQLBLANKLINES ON +SET DEFINE OFF + +-- IDEMPIERE-3015 +-- Jan 27, 2016 5:03:50 PM CET +UPDATE AD_Column SET IsParent='Y', IsUpdateable='N',Updated=TO_DATE('2016-01-27 17:03:50','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=749 +; + +SELECT register_migration_script('201601271704_IDEMPIERE-3015.sql') FROM dual +; + diff --git a/migration/i3.1/postgresql/201601271704_IDEMPIERE-3015.sql b/migration/i3.1/postgresql/201601271704_IDEMPIERE-3015.sql new file mode 100644 index 0000000000..407bd20472 --- /dev/null +++ b/migration/i3.1/postgresql/201601271704_IDEMPIERE-3015.sql @@ -0,0 +1,8 @@ +-- IDEMPIERE-3015 +-- Jan 27, 2016 5:03:50 PM CET +UPDATE AD_Column SET IsParent='Y', IsUpdateable='N',Updated=TO_TIMESTAMP('2016-01-27 17:03:50','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=749 +; + +SELECT register_migration_script('201601271704_IDEMPIERE-3015.sql') FROM dual +; +