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

20130816201200_change_push_data_limit.rb « migrate « ci « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 29bd45c2cf95ccfbb8ec0010ce93a4f235f71594 (plain)
1
2
3
4
5
class ChangePushDataLimit < ActiveRecord::Migration
  def change
    change_column :builds, :push_data, :text, :limit => 16777215
  end
end