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

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

class CreateVulnerabilityUuidTypeMigrationIndex < Gitlab::Database::Migration[2.1]
  def up
    # no-op due to https://gitlab.com/gitlab-com/gl-infra/production/-/issues/15983
  end

  def down
    # no-op due to https://gitlab.com/gitlab-com/gl-infra/production/-/issues/15983
  end
end