summaryrefslogtreecommitdiff
path: root/db/migrate/20140502115131_add_repo_size_to_db.rb
blob: 4cb7a01bbf2e77a36ea4e520345a2f13eabeaf98 (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddRepoSizeToDb < ActiveRecord::Migration[4.2]
  def change
    add_column :projects, :repository_size, :float, default: 0
  end
end