Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20121115094430_increate_trace_colunm_limit.rb « migrate « ci « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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