debian-mirror-gitlab/db/migrate/20140502115131_add_repo_size_to_db.rb
2016-06-16 23:09:34 +05:30

7 lines
156 B
Ruby

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