debian-mirror-gitlab/db/migrate/20140502115131_add_repo_size_to_db.rb
2019-02-15 15:39:39 +05:30

6 lines
161 B
Ruby

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