Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20141226080412_add_developers_can_push_to_protected_branches.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 70e7272f7f3f8640de1240bfdeb7f4d09133529f (plain)
1
2
3
4
5
class AddDevelopersCanPushToProtectedBranches < ActiveRecord::Migration
  def change
    add_column :protected_branches, :developers_can_push, :boolean, default: false, null: false
  end
end