gitlab-org--gitlab-foss/db/migrate/20170816143940_add_protecte...

8 lines
157 B
Ruby

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