debian-mirror-gitlab/db/migrate/20201105024127_add_uploads_size_to_namespace_root_storage_statistics.rb
2021-01-29 00:20:46 +05:30

14 lines
339 B
Ruby

# 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