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/20201105024127_add_uploads_size_to_namespace_root_storage_statistics.rb')
-rw-r--r--db/migrate/20201105024127_add_uploads_size_to_namespace_root_storage_statistics.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/db/migrate/20201105024127_add_uploads_size_to_namespace_root_storage_statistics.rb b/db/migrate/20201105024127_add_uploads_size_to_namespace_root_storage_statistics.rb
deleted file mode 100644
index c3cccc7d5f2..00000000000
--- a/db/migrate/20201105024127_add_uploads_size_to_namespace_root_storage_statistics.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-# frozen_string_literal: true
-
-class AddUploadsSizeToNamespaceRootStorageStatistics < ActiveRecord::Migration[6.0]
- DOWNTIME = false
-
- def up
- add_column :namespace_root_storage_statistics, :uploads_size, :bigint, default: 0, null: false
- end
-
- def down
- remove_column :namespace_root_storage_statistics, :uploads_size
- end
-end