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

20190527194830_add_wiki_size_to_statistics.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d4f16cdec1847f1491e9920a17c2c98fc53257c5 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class AddWikiSizeToStatistics < ActiveRecord::Migration[5.0]
  DOWNTIME = false

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