summaryrefslogtreecommitdiffstats
path: root/db/migrate/20161010081528_change_journal_details_value_limit.rb
blob: 7f48e885b7a1f2c3596b09379c1a4888e1b98e97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: false

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