debian-mirror-gitlab/db/migrate/20141226080412_add_developers_can_push_to_protected_branches.rb
2015-04-26 09:18:37 +02:00

6 lines
191 B
Ruby

class AddDevelopersCanPushToProtectedBranches < ActiveRecord::Migration
def change
add_column :protected_branches, :developers_can_push, :boolean, default: false, null: false
end
end