debian-mirror-gitlab/db/post_migrate/20211214012507_backfill_incident_issue_escalation_statuses.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
300 B
Ruby
Raw Normal View History

2022-03-02 08:16:31 +05:30
# frozen_string_literal: true
class BackfillIncidentIssueEscalationStatuses < Gitlab::Database::Migration[1.0]
2022-06-21 17:19:12 +05:30
# Removed in favor of creating records for existing incidents
# as-needed. See db/migrate/20220321234317_remove_all_issuable_escalation_statuses.rb.
def change
2022-03-02 08:16:31 +05:30
# no-op
end
end