summaryrefslogtreecommitdiff
path: root/db/migrate/20201105024127_add_uploads_size_to_namespace_root_storage_statistics.rb
blob: c3cccc7d5f270a50d7103b918a670bf7fc6a3754 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# 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