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

20220119141407_add_dependency_proxy_size_to_namespace_statistics.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d8107ad8e214b049a579575844002eaa72f1bf66 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

class AddDependencyProxySizeToNamespaceStatistics < Gitlab::Database::Migration[1.0]
  def change
    add_column :namespace_statistics, :dependency_proxy_size, :bigint, default: 0, null: false
  end
end