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

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

class AddReopenIssueOnExternalParticipantNoteToServiceDeskSettings < Gitlab::Database::Migration[2.2]
  milestone '16.7'

  enable_lock_retries!

  def change
    add_column :service_desk_settings, :reopen_issue_on_external_participant_note, :boolean, null: false, default: false
  end
end