debian-mirror-gitlab/db/migrate/20170816143940_add_protected_to_ci_pipelines.rb
2019-02-15 15:39:39 +05:30

7 lines
157 B
Ruby

class AddProtectedToCiPipelines < ActiveRecord::Migration[4.2]
DOWNTIME = false
def change
add_column :ci_pipelines, :protected, :boolean
end
end