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: ce8f1e036862a4ae7ce2c2cd43124d2262d28efc (plain)
1
2
3
4
5
6
7
class AddProtectedToCiPipelines < ActiveRecord::Migration
  DOWNTIME = false

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