debian-mirror-gitlab/db/migrate/20141226080412_add_developers_can_push_to_protected_branches.rb
2016-06-16 23:09:34 +05:30

7 lines
213 B
Ruby

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