diff --git a/migration/i4.1/oracle/201710311719_IDEMPIERE-1052.sql b/migration/i4.1/oracle/201710311719_IDEMPIERE-1052.sql new file mode 100644 index 0000000000..73bc120d14 --- /dev/null +++ b/migration/i4.1/oracle/201710311719_IDEMPIERE-1052.sql @@ -0,0 +1,11 @@ +SET SQLBLANKLINES ON +SET DEFINE OFF + +-- IDEMPIERE-1052 Improve Performance using Search instead of Table/Table Direct +-- Oct 31, 2017 5:15:03 PM CET +UPDATE AD_Column SET AD_Reference_ID=30, IsUpdateable='N', FKConstraintType=NULL,Updated=TO_DATE('2017-10-31 17:15:03','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=8814 +; + +SELECT register_migration_script('201710311719_IDEMPIERE-1052.sql') FROM dual +; + diff --git a/migration/i4.1/postgresql/201710311719_IDEMPIERE-1052.sql b/migration/i4.1/postgresql/201710311719_IDEMPIERE-1052.sql new file mode 100644 index 0000000000..7ab21ef140 --- /dev/null +++ b/migration/i4.1/postgresql/201710311719_IDEMPIERE-1052.sql @@ -0,0 +1,8 @@ +-- IDEMPIERE-1052 Improve Performance using Search instead of Table/Table Direct +-- Oct 31, 2017 5:15:03 PM CET +UPDATE AD_Column SET AD_Reference_ID=30, IsUpdateable='N', FKConstraintType=NULL,Updated=TO_TIMESTAMP('2017-10-31 17:15:03','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=8814 +; + +SELECT register_migration_script('201710311719_IDEMPIERE-1052.sql') FROM dual +; +