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

class ChangeJournalsNotesLimit < ActiveRecord::Migration[4.2]
  def up
    if ActiveRecord::Base.connection.adapter_name =~ /mysql/i
      max_size = 16.megabytes
      change_column :journals, :notes, :text, :limit => max_size
    end
  end

  def down
    # no-op
  end
end