Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20200622095419_add_snippets_size_to_project_statistics.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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