Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20160421130527_disable_repository_checks.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8b3ce73c5e81961285e4e520df99a8375dfedcf4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# rubocop:disable all
class DisableRepositoryChecks < ActiveRecord::Migration[4.2]
  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