summaryrefslogtreecommitdiff
path: root/db/post_migrate/20200730133730_remove_table_vulnerability_export_verification_status.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/post_migrate/20200730133730_remove_table_vulnerability_export_verification_status.rb')
-rw-r--r--db/post_migrate/20200730133730_remove_table_vulnerability_export_verification_status.rb16
1 files changed, 0 insertions, 16 deletions
diff --git a/db/post_migrate/20200730133730_remove_table_vulnerability_export_verification_status.rb b/db/post_migrate/20200730133730_remove_table_vulnerability_export_verification_status.rb
deleted file mode 100644
index 9aa15fa7d1a..00000000000
--- a/db/post_migrate/20200730133730_remove_table_vulnerability_export_verification_status.rb
+++ /dev/null
@@ -1,16 +0,0 @@
-# frozen_string_literal: true
-
-class RemoveTableVulnerabilityExportVerificationStatus < ActiveRecord::Migration[6.0]
- DOWNTIME = false
-
- def up
- return unless table_exists?(:vulnerability_export_verification_status)
-
- drop_table :vulnerability_export_verification_status
- end
-
- def down
- # no-op because `vulnerability_export_verification_status` table should not
- # be created, see https://gitlab.com/gitlab-org/gitlab/-/issues/232977
- end
-end