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

20150125163100_add_default_branch_protection_setting.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5020daf55f3df10ce2f8e79decd331ebdd168751 (plain)
1
2
3
4
5
class AddDefaultBranchProtectionSetting < ActiveRecord::Migration
  def change
    add_column :application_settings, :default_branch_protection, :integer, :default => 2
  end
end