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

8 lines
151 B
Ruby

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