debian-mirror-gitlab/db/migrate/20170816143940_add_protected_to_ci_pipelines.rb

8 lines
152 B
Ruby
Raw Normal View History

2018-03-17 18:26:18 +05:30
class AddProtectedToCiPipelines < ActiveRecord::Migration
DOWNTIME = false
def change
add_column :ci_pipelines, :protected, :boolean
end
end