debian-mirror-gitlab/db/migrate/20150125163100_add_default_branch_protection_setting.rb

7 lines
206 B
Ruby
Raw Normal View History

# rubocop:disable all
2019-02-15 15:39:39 +05:30
class AddDefaultBranchProtectionSetting < ActiveRecord::Migration[4.2]
2015-04-26 12:48:37 +05:30
def change
add_column :application_settings, :default_branch_protection, :integer, :default => 2
end
end