debian-mirror-gitlab/db/migrate/20140502115131_add_repo_size_to_db.rb
2014-09-02 14:37:02 +02:00

6 lines
134 B
Ruby

class AddRepoSizeToDb < ActiveRecord::Migration
def change
add_column :projects, :repository_size, :float, default: 0
end
end