summaryrefslogtreecommitdiff
path: root/db/migrate/20170816143940_add_protected_to_ci_pipelines.rb
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