debian-mirror-gitlab/db/post_migrate/20230216191507_delete_incorrectly_onboarded_namespaces.rb
2023-05-27 22:25:52 +05:30

18 lines
435 B
Ruby

# frozen_string_literal: true
class DeleteIncorrectlyOnboardedNamespaces < Gitlab::Database::Migration[2.1]
disable_ddl_transaction!
restrict_gitlab_migration gitlab_schema: :gitlab_main
def up
# Changed to a no-op, this migration was reverted after
# an incident during a deploy to production on gitlab.com
# https://gitlab.com/gitlab-com/gl-infra/production/-/issues/8436
end
def down
# no-op
end
end