diff --git a/migration/i7.1/oracle/201912101914_IDEMPIERE-4129.sql b/migration/i7.1/oracle/201912101914_IDEMPIERE-4129.sql new file mode 100644 index 0000000000..d7afe99aff --- /dev/null +++ b/migration/i7.1/oracle/201912101914_IDEMPIERE-4129.sql @@ -0,0 +1,13 @@ +SET SQLBLANKLINES ON +SET DEFINE OFF + +-- Dec 10, 2019, 7:14:05 PM CET +ALTER TABLE T_Selection MODIFY ViewID VARCHAR2(2000) +; + +ALTER TABLE T_Selection_InfoWindow MODIFY ViewID VARCHAR2(2000) +; + +SELECT register_migration_script('201912101914_IDEMPIERE-4129.sql') FROM dual +; + diff --git a/migration/i7.1/postgresql/201912101914_IDEMPIERE-4129.sql b/migration/i7.1/postgresql/201912101914_IDEMPIERE-4129.sql new file mode 100644 index 0000000000..17b9133c89 --- /dev/null +++ b/migration/i7.1/postgresql/201912101914_IDEMPIERE-4129.sql @@ -0,0 +1,11 @@ +-- IDEMPIERE-4129 Increase field size t_selection.viewid (FHCA-1130) +-- Dec 10, 2019, 7:14:05 PM CET +INSERT INTO t_alter_column values('T_Selection','ViewID','VARCHAR(2000)',null,null) +; + +INSERT INTO t_alter_column values('T_Selection_InfoWindow','ViewID','VARCHAR(2000)',null,null) +; + +SELECT register_migration_script('201912101914_IDEMPIERE-4129.sql') FROM dual +; +