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

20140502115131_add_repo_size_to_db.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 090b30a4f26938398537e1bb78c0f10f13adc629 (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddRepoSizeToDb < ActiveRecord::Migration
  def change
    add_column :projects, :repository_size, :float, default: 0
  end
end