debian-mirror-gitlab/db/migrate/20141226080412_add_developers_can_push_to_protected_branches.rb
2019-02-15 15:39:39 +05:30

6 lines
218 B
Ruby

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