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

8 lines
152 B
Ruby

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