IDEMPIERE-4129 Increase field size t_selection.viewid (FHCA-1130)

This commit is contained in:
Carlos Ruiz 2019-12-10 19:24:24 +01:00
parent d0d64b9772
commit 0b26ced570
2 changed files with 24 additions and 0 deletions

View File

@ -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
;

View File

@ -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
;