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

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

class AddIssueEmailParticipantIdToSentNotifications < Gitlab::Database::Migration[2.2]
  milestone '16.9'

  def change
    add_column :sent_notifications, :issue_email_participant_id, :bigint, null: true
  end
end