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

20130531112551_add_data_field_to_build.rb « migrate « ci « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ff897bce4484ee042ed3c4d8d6410905031fe415 (plain)
1
2
3
4
5
class AddDataFieldToBuild < ActiveRecord::Migration
  def change
    add_column :builds, :push_data, :text
  end
end