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

20150710113836_add_job_type_to_builds.rb « migrate « ci « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2829a0dee23d71c85c9a5eee1f07372a9bc3d220 (plain)
1
2
3
4
5
class AddJobTypeToBuilds < ActiveRecord::Migration
  def change
    add_column :builds, :job_type, :string
  end
end