gitlab-org--gitlab-foss/db/migrate/20200622095419_add_snippets...

10 lines
206 B
Ruby

# frozen_string_literal: true
class AddSnippetsSizeToProjectStatistics < ActiveRecord::Migration[6.0]
DOWNTIME = false
def change
add_column :project_statistics, :snippets_size, :bigint
end
end