summaryrefslogtreecommitdiff
path: root/db/post_migrate/20230414075119_add_namespaces_by_top_level_namespace_index.rb
blob: fda776f3bc5b3180bc2cfdee02146d1dd66839cf (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

class AddNamespacesByTopLevelNamespaceIndex < Gitlab::Database::Migration[2.1]
  def up
    # no-op: re-implemented in AddNamespacesByTopLevelNamespaceIndexV2
  end

  def down
    # no-op
  end
end