diff --git a/migration/i7.1/oracle/202001041702_IDEMPIERE-1486.sql b/migration/i7.1/oracle/202001041702_IDEMPIERE-1486.sql new file mode 100644 index 0000000000..4163473551 --- /dev/null +++ b/migration/i7.1/oracle/202001041702_IDEMPIERE-1486.sql @@ -0,0 +1,15 @@ +SET SQLBLANKLINES ON +SET DEFINE OFF + +-- IDEMPIERE-2924 Export to XLS limited to 65536 +-- Jan 4, 2020, 4:51:45 PM CET +UPDATE AD_Form SET AccessLevel='7',Updated=TO_DATE('2020-01-04 16:51:45','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Form_ID=200008 +; + +-- Jan 4, 2020, 4:51:52 PM CET +UPDATE AD_Process SET AccessLevel='7',Updated=TO_DATE('2020-01-04 16:51:52','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_ID=200064 +; + +SELECT register_migration_script('202001041702_IDEMPIERE-1486.sql') FROM dual +; + diff --git a/migration/i7.1/postgresql/202001041702_IDEMPIERE-1486.sql b/migration/i7.1/postgresql/202001041702_IDEMPIERE-1486.sql new file mode 100644 index 0000000000..1a52d34b60 --- /dev/null +++ b/migration/i7.1/postgresql/202001041702_IDEMPIERE-1486.sql @@ -0,0 +1,12 @@ +-- IDEMPIERE-2924 Export to XLS limited to 65536 +-- Jan 4, 2020, 4:51:45 PM CET +UPDATE AD_Form SET AccessLevel='7',Updated=TO_TIMESTAMP('2020-01-04 16:51:45','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Form_ID=200008 +; + +-- Jan 4, 2020, 4:51:52 PM CET +UPDATE AD_Process SET AccessLevel='7',Updated=TO_TIMESTAMP('2020-01-04 16:51:52','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_ID=200064 +; + +SELECT register_migration_script('202001041702_IDEMPIERE-1486.sql') FROM dual +; +