summaryrefslogtreecommitdiff
path: root/db/migrate/20200622095419_add_snippets_size_to_project_statistics.rb
blob: 9fe470478b8899e033b973b5e455d01e8ce2a9a5 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class AddSnippetsSizeToProjectStatistics < ActiveRecord::Migration[6.0]
  DOWNTIME = false

  def change
    add_column :project_statistics, :snippets_size, :bigint
  end
end