BigW Consortium Gitlab

20141226080412_add_developers_can_push_to_protected_branches.rb 213 Bytes
Newer Older
1
# rubocop:disable all
2 3 4 5 6
class AddDevelopersCanPushToProtectedBranches < ActiveRecord::Migration
  def change
    add_column :protected_branches, :developers_can_push, :boolean, default: false, null: false
  end
end