github.com/gophish/gophish@v0.12.2-0.20230915144530-8e7929441393/db/db_mysql/migrations/20180609164054_0.7.0_update_html_storage.sql (about)

     1  
     2  -- +goose Up
     3  -- SQL in section 'Up' is executed when this migration is applied
     4  ALTER TABLE `templates` MODIFY html MEDIUMTEXT;
     5  ALTER TABLE `pages` MODIFY html MEDIUMTEXT;
     6  
     7  -- +goose Down
     8  -- SQL section 'Down' is executed when this migration is rolled back
     9  ALTER TABLE `templates` MODIFY html TEXT;
    10  ALTER TABLE `pages` MODIFY html TEXT;