Sha256: f5f66c8e87432a346f285f6a2adebc87d7c4a6deacdc5f00b723abb240bea381
Contents?: true
Size: 359 Bytes
Versions: 23
Compression:
Stored size: 359 Bytes
Contents
class LargerEmailPlainHtmlStorage < ActiveRecord::Migration#[5.0] def up change_column :emails, :plain_content, :text, limit: 16777215 change_column :emails, :html_content, :text, limit: 16777215 end def down change_column :emails, :plain_content, :text, limit: 65535 change_column :emails, :html_content, :text, limit: 65535 end end
Version data entries
23 entries across 23 versions & 1 rubygems