debian-mirror-gitlab/db/migrate/20200622095419_add_snippets_size_to_project_statistics.rb

10 lines
206 B
Ruby
Raw Normal View History

2020-07-28 23:09:34 +05:30
# frozen_string_literal: true
class AddSnippetsSizeToProjectStatistics < ActiveRecord::Migration[6.0]
DOWNTIME = false
def change
add_column :project_statistics, :snippets_size, :bigint
end
end