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

20220619212618_add_selective_code_owner_removals_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: 435a1d7a40e6070239fab00583b3caaae6e73960 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

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

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