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/migrate/20200314060834_add_scanned_resources_count_to_security_scan.rb')
-rw-r--r--db/migrate/20200314060834_add_scanned_resources_count_to_security_scan.rb16
1 files changed, 0 insertions, 16 deletions
diff --git a/db/migrate/20200314060834_add_scanned_resources_count_to_security_scan.rb b/db/migrate/20200314060834_add_scanned_resources_count_to_security_scan.rb
deleted file mode 100644
index e8f7a693e99..00000000000
--- a/db/migrate/20200314060834_add_scanned_resources_count_to_security_scan.rb
+++ /dev/null
@@ -1,16 +0,0 @@
-# frozen_string_literal: true
-class AddScannedResourcesCountToSecurityScan < ActiveRecord::Migration[6.0]
- include Gitlab::Database::MigrationHelpers
-
- DOWNTIME = false
-
- disable_ddl_transaction!
-
- def up
- add_column :security_scans, :scanned_resources_count, :integer
- end
-
- def down
- remove_column :security_scans, :scanned_resources_count
- end
-end