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

20170816143940_add_protected_to_ci_pipelines.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: aefaf4a487bb4f077985afd25780a26ecffc3064 (plain)
1
2
3
4
5
6
7
class AddProtectedToCiPipelines < ActiveRecord::Migration[4.2]
  DOWNTIME = false

  def change
    add_column :ci_pipelines, :protected, :boolean
  end
end