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

20141103162726_add_job_id_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: b4e3020e192f3b6c478a84edc25bd17e4e7905b1 (plain)
1
2
3
4
5
class AddJobIdToBuild < ActiveRecord::Migration
  def change
    add_column :builds, :job_id, :integer
  end
end