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