98bb435f42
Migrations shouldn't fail RuboCop checks - especially lint checks, such as the nested method check. To avoid changing code in existing migrations, add the magic comment to the top of each of them to skip that file.
12 lines
444 B
Ruby
12 lines
444 B
Ruby
# rubocop:disable all
|
|
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
|