IDEMPIERE-1575 Increase some columns length AD_ImpFormat_Row.Callout (#852)

* addendum to IDEMPIERE-1575 with regards to IDEMPIERE-4724

* Regenerated scripts, added register line and increased the size up to 4k to safely accomodate multiple callouts

Co-authored-by: mschnbeck <ms.github@schoenbeck.de>
This commit is contained in:
lHeidbreder 2021-08-31 14:11:56 +02:00 committed by GitHub
parent cd849dc23b
commit 6fb4ebbf2f
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 @@
SET SQLBLANKLINES ON
SET DEFINE OFF
-- IDEMPIERE-1575 with regards to IDEMPIERE-4724
-- 31.08.2021, 08:57:56 MESZ
UPDATE AD_Column SET FieldLength=4000,Updated=TO_DATE('2021-08-31 08:57:56','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=4704
;
-- 31.08.2021, 08:58:02 MESZ
ALTER TABLE AD_ImpFormat_Row MODIFY Callout VARCHAR2(4000 CHAR) DEFAULT NULL
;
SELECT register_migration_script('202108301100_IDEMPIERE-1575.sql') FROM dual
;

View File

@ -0,0 +1,11 @@
-- IDEMPIERE-1575 with regards to IDEMPIERE-4724
-- 31.08.2021, 08:57:56 MESZ
UPDATE AD_Column SET FieldLength=4000,Updated=TO_TIMESTAMP('2021-08-31 08:57:56','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=4704
;
-- 31.08.2021, 08:58:02 MESZ
INSERT INTO t_alter_column values('ad_impformat_row','Callout','VARCHAR(4000)',null,'NULL')
;
SELECT register_migration_script('202108301100_IDEMPIERE-1575.sql') FROM dual
;