Attachment Bug Fix (#471)

Fixes issue with cropped attachments.
This commit is contained in:
s vignesh 2016-12-03 05:08:20 +05:30 committed by Jordan Wright
parent 19021b6c91
commit ab1ac797a9

View file

@ -0,0 +1,9 @@
-- +goose Up
-- SQL in section 'Up' is executed when this migration is applied
ALTER TABLE attachments MODIFY content LONGTEXT;
-- +goose Down
-- SQL section 'Down' is executed when this migration is rolled back
ALTER TABLE attachments MODIFY content TEXT;