1
0
mirror of https://github.com/fspc/bike-database.git synced 2025-04-04 10:03:22 -04:00
bike-database/db/migrate/20150930005913_add_height_and_weight_to_client.rb
2015-09-29 20:03:43 -05:00

7 lines
164 B
Ruby

class AddHeightAndWeightToClient < ActiveRecord::Migration
def change
add_column :clients, :weight, :float
add_column :clients, :height, :float
end
end