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

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

class BackfillIncidentIssueEscalationStatuses < Gitlab::Database::Migration[1.0]
  # Removed in favor of creating records for existing incidents
  # as-needed. See db/migrate/20220321234317_remove_all_issuable_escalation_statuses.rb.
  def change
    # no-op
  end
end