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

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

  def down
    # no-op
  end
end