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

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

class AddIndexToEventsOnAuthorIdAndActionAndId < Gitlab::Database::Migration[1.0]
  # no-op
  # see: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/77436

  def up
    # no-op
  end

  def down
    # no-op
  end
end