summaryrefslogtreecommitdiff
path: root/db/migrate/20150125163100_add_default_branch_protection_setting.rb
blob: 7ca3116d35440db2dc058952d4641394ccf3cae0 (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddDefaultBranchProtectionSetting < ActiveRecord::Migration
  def change
    add_column :application_settings, :default_branch_protection, :integer, :default => 2
  end
end