# 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