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

20130531133603_add_runner_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: bccc09708350bb35152798be1643d211a2587d46 (plain)
1
2
3
4
5
class AddRunnerIdToBuild < ActiveRecord::Migration
  def change
    add_column :builds, :runner_id, :integer
  end
end