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

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

class BackfillWorkItemTypeIdOnIssues < Gitlab::Database::Migration[1.0]
  def up
    # no-op
    # This migration will be rescheduled as described in
    # https://gitlab.com/gitlab-org/gitlab/-/merge_requests/85212
  end

  def down
    # no-op
  end
end