summaryrefslogtreecommitdiff
path: root/db/migrate/20160412140240_add_repository_checks_enabled_setting.rb
blob: a59563b835ea5c08353fa2238fa9fa67f99618d5 (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddRepositoryChecksEnabledSetting < ActiveRecord::Migration[4.2]
  def change
    add_column :application_settings, :repository_checks_enabled, :boolean, default: true
  end
end