summaryrefslogtreecommitdiff
path: root/db/migrate/20160421130527_disable_repository_checks.rb
blob: 808a4b93c7c596adf0bd8b84c8752f268d36d7b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
class DisableRepositoryChecks < ActiveRecord::Migration
  def up
    change_column_default :application_settings, :repository_checks_enabled, false 
    execute 'UPDATE application_settings SET repository_checks_enabled = false'
  end

  def down
    change_column_default :application_settings, :repository_checks_enabled, true    
    execute 'UPDATE application_settings SET repository_checks_enabled = true'
  end
end