6 lines
201 B
Ruby
6 lines
201 B
Ruby
# rubocop:disable all
|
|
class AddDefaultBranchProtectionSetting < ActiveRecord::Migration
|
|
def change
|
|
add_column :application_settings, :default_branch_protection, :integer, :default => 2
|
|
end
|
|
end
|