IDEMPIERE-3716 Extend the length of the Column SQL field in AD_ViewColumn to allow more advanced queries

This commit is contained in:
Diego Ruiz 2018-05-22 13:07:12 +02:00
parent 6e91b67a1b
commit 06357f40b0
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,14 @@
SET SQLBLANKLINES ON
SET DEFINE OFF
-- May 19, 2018 11:01:06 PM CEST
-- IDEMPIERE-3716 Extend the length of the Column SQL field in AD_ViewColumn to allow more advanced queries
UPDATE AD_Column SET FieldLength=2000,Updated=TO_DATE('2018-05-19 23:01:06','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=210586
;
-- May 19, 2018 11:01:08 PM CEST
ALTER TABLE AD_ViewColumn MODIFY ColumnSQL VARCHAR2(2000) DEFAULT NULL
;
SELECT register_migration_script('201805200007_IDEMPIERE-3716.sql') FROM dual
;

View File

@ -0,0 +1,11 @@
-- May 19, 2018 11:01:06 PM CEST
-- IDEMPIERE-3716 Extend the length of the Column SQL field in AD_ViewColumn to allow more advanced queries
UPDATE AD_Column SET FieldLength=2000,Updated=TO_TIMESTAMP('2018-05-19 23:01:06','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=210586
;
-- May 21, 2018 1:37:18 PM CEST
INSERT INTO t_alter_column values('ad_viewcolumn','ColumnSQL','VARCHAR(2000)',null,'NULL')
;
SELECT register_migration_script('201805200007_IDEMPIERE-3716.sql') FROM dual
;