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

20160412140240_add_repository_checks_enabled_setting.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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