summaryrefslogtreecommitdiffstats
path: root/db/migrate/20161010081301_change_issues_description_limit.rb
blob: f428e274c0ab3c12b22e193468bfac509558f604 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
class ChangeIssuesDescriptionLimit < ActiveRecord::Migration[4.2]
  def up
    if Redmine::Database.mysql?
      max_size = 16.megabytes
      change_column :issues, :description, :text, :limit => max_size
    end
  end

  def down
    # no-op
  end
end