2016-06-09 08:39:16 -04:00
|
|
|
# rubocop:disable all
|
2016-04-21 10:50:26 -04:00
|
|
|
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
|