summaryrefslogtreecommitdiff
path: root/db/migrate/20170831092813_add_config_source_to_pipelines.rb
blob: ba1f73f0e689b491121b8af2cecd7017fd43c7aa (plain)
1
2
3
4
5
6
7
class AddConfigSourceToPipelines < ActiveRecord::Migration[4.2]
  DOWNTIME = false

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