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

20170831092813_add_config_source_to_pipelines.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ff51e968abd86787a63a0137dc086ff4e2b85213 (plain)
1
2
3
4
5
6
7
class AddConfigSourceToPipelines < ActiveRecord::Migration
  DOWNTIME = false

  def change
    add_column(:ci_pipelines, :config_source, :integer, allow_null: true)
  end
end