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

20220918124223_add_suggested_reviewers_enabled_to_project_settings.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1a762d68bdc0fa8367a1ef713539c9cc3ef67dcb (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class AddSuggestedReviewersEnabledToProjectSettings < Gitlab::Database::Migration[2.0]
  enable_lock_retries!

  def change
    add_column :project_settings, :suggested_reviewers_enabled, :boolean, default: false, null: false
  end
end