BigW Consortium Gitlab

20140502115131_add_repo_size_to_db.rb 156 Bytes
Newer Older
1
# rubocop:disable all
2 3 4 5 6
class AddRepoSizeToDb < ActiveRecord::Migration
  def change
    add_column :projects, :repository_size, :float, default: 0
  end
end