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

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

class MigrateRedisSlotKeys < Gitlab::Database::Migration[2.1]
  disable_ddl_transaction!

  def up
    # deleted as contained a bug
  end

  def down
    # no-op
  end
end