summaryrefslogtreecommitdiffstats
path: root/db/migrate/20161010081528_change_journal_details_value_limit.rb
blob: d83fbacd6707e827956450b44ddcb71c511d4a31 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
class ChangeJournalDetailsValueLimit < ActiveRecord::Migration[4.2]
  def up
    if ActiveRecord::Base.connection.adapter_name =~ /mysql/i
      max_size = 16.megabytes
      change_column :journal_details, :value, :text, :limit => max_size
      change_column :journal_details, :old_value, :text, :limit => max_size
    end
  end

  def down
    # no-op
  end
end