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