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