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

20150226001835_add_job_type_to_job.rb « migrate « ci « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0153c87b9327c01132566841e2dd304ba27213f5 (plain)
1
2
3
4
5
6
class AddJobTypeToJob < ActiveRecord::Migration
  def change
    add_column :jobs, :job_type, :string, default: 'parallel'
    add_column :jobs, :refs, :string
  end
end