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

20211023102243_schedule_delete_invalid_epic_issues.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e08ad8d89d1ee351315c7846a8b68b618c779ff4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

class ScheduleDeleteInvalidEpicIssues < Gitlab::Database::Migration[1.0]
  # This is a now a no-op
  # See https://gitlab.com/gitlab-org/gitlab/-/issues/348477

  def up
    # no-op
  end

  def down
    # also no-op
  end
end