Commit ece5d957 authored by Tiger Watson's avatar Tiger Watson

Merge branch 'vij-add-dp-size-column-root-ns' into 'master'

Adds dependency_proxy_size to RootNamespaceStorageStatistics

See merge request gitlab-org/gitlab!78565
parents 79a55663 33e4c4e6
# frozen_string_literal: true
class AddDependencyProxySizeToNamespaceRootStorageStatistics < Gitlab::Database::Migration[1.0]
def change
add_column :namespace_root_storage_statistics, :dependency_proxy_size, :bigint, default: 0, null: false
end
end
723db0d234a4dadfdad68a92c249ec0b42e519297f48bcb843e89c1ad97032c7
\ No newline at end of file
......@@ -16516,7 +16516,8 @@ CREATE TABLE namespace_root_storage_statistics (
packages_size bigint DEFAULT 0 NOT NULL,
snippets_size bigint DEFAULT 0 NOT NULL,
pipeline_artifacts_size bigint DEFAULT 0 NOT NULL,
uploads_size bigint DEFAULT 0 NOT NULL
uploads_size bigint DEFAULT 0 NOT NULL,
dependency_proxy_size bigint DEFAULT 0 NOT NULL
);
CREATE TABLE namespace_settings (
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment