IDEMPIERE-5302 Drill Assistant Feature (#1617)

- fix column length / IDEMPIERE-5523
This commit is contained in:
Carlos Ruiz 2022-12-23 12:09:56 +01:00 committed by GitHub
parent 6830ebe477
commit 1d932b8d7d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,14 @@
-- IDEMPIERE-5302 Drill Assistant Feature + IDEMPIERE-5523
SELECT register_migration_script('202212231208_IDEMPIERE-5302.sql') FROM dual;
SET SQLBLANKLINES ON
SET DEFINE OFF
-- Dec 23, 2022, 12:08:41 PM CET
UPDATE AD_Column SET FieldLength=255,Updated=TO_TIMESTAMP('2022-12-23 12:08:41','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=214730
;
-- Dec 23, 2022, 12:08:43 PM CET
ALTER TABLE AD_Process_DrillRule MODIFY Name VARCHAR2(255 CHAR)
;

View File

@ -0,0 +1,11 @@
-- IDEMPIERE-5302 Drill Assistant Feature + IDEMPIERE-5523
SELECT register_migration_script('202212231208_IDEMPIERE-5302.sql') FROM dual;
-- Dec 23, 2022, 12:08:41 PM CET
UPDATE AD_Column SET FieldLength=255,Updated=TO_TIMESTAMP('2022-12-23 12:08:41','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=214730
;
-- Dec 23, 2022, 12:08:43 PM CET
INSERT INTO t_alter_column values('ad_process_drillrule','Name','VARCHAR(255)',null,null)
;