summaryrefslogtreecommitdiff
path: root/db/migrate/20140502115131_add_repo_size_to_db.rb
blob: 7361d1a9440f3592bdff0d3235df55a365ebd115 (plain)
1
2
3
4
5
class AddRepoSizeToDb < ActiveRecord::Migration
  def change
    add_column :projects, :repository_size, :float, default: 0
  end
end