fix_bug: default VARCHAR length for notification_request.info = 1M (old value = 1K)
This commit is contained in:
parent
452ef09289
commit
eaf8ef0f14
@ -122,3 +122,5 @@ ALTER TABLE resource
|
|||||||
UPDATE resource
|
UPDATE resource
|
||||||
SET etag = encode(sha256(decode(resource.data, 'base64')),'hex') WHERE resource.data is not null;
|
SET etag = encode(sha256(decode(resource.data, 'base64')),'hex') WHERE resource.data is not null;
|
||||||
|
|
||||||
|
ALTER TABLE notification_request ALTER COLUMN info SET DATA TYPE varchar(1000000);
|
||||||
|
|
||||||
|
|||||||
@ -826,7 +826,7 @@ CREATE TABLE IF NOT EXISTS notification_request (
|
|||||||
targets VARCHAR(10000) NOT NULL,
|
targets VARCHAR(10000) NOT NULL,
|
||||||
template_id UUID,
|
template_id UUID,
|
||||||
template VARCHAR(10000000),
|
template VARCHAR(10000000),
|
||||||
info VARCHAR(1000),
|
info VARCHAR(1000000),
|
||||||
additional_config VARCHAR(1000),
|
additional_config VARCHAR(1000),
|
||||||
originator_entity_id UUID,
|
originator_entity_id UUID,
|
||||||
originator_entity_type VARCHAR(32),
|
originator_entity_type VARCHAR(32),
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user