gitlab-org--gitlab-foss/db/migrate/20170816133940_add_protected_to_ci_builds.rb

7 lines
146 B
Ruby

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