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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'db/post_migrate/20201026051643_remove_scanned_resources_count_from_security_scans.rb')
-rw-r--r--db/post_migrate/20201026051643_remove_scanned_resources_count_from_security_scans.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/db/post_migrate/20201026051643_remove_scanned_resources_count_from_security_scans.rb b/db/post_migrate/20201026051643_remove_scanned_resources_count_from_security_scans.rb
deleted file mode 100644
index 208448e2278..00000000000
--- a/db/post_migrate/20201026051643_remove_scanned_resources_count_from_security_scans.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-# frozen_string_literal: true
-
-class RemoveScannedResourcesCountFromSecurityScans < ActiveRecord::Migration[6.0]
- DOWNTIME = false
-
- def up
- remove_column :security_scans, :scanned_resources_count
- end
-
- def down
- add_column :security_scans, :scanned_resources_count, :integer
- end
-end