summaryrefslogtreecommitdiff
path: root/db/ci/migrate/20121115094430_increate_trace_colunm_limit.rb
blob: 5853f440f598e7d344c433c24a381c2441cbfff9 (plain)
1
2
3
4
5
6
7
8
class IncreateTraceColunmLimit < ActiveRecord::Migration
  def up
    change_column :builds, :trace, :text, :limit => 1073741823
  end

  def down
  end
end