lk | adds weight & height to clients

This commit is contained in:
Louis Knapp
2015-09-29 20:03:43 -05:00
parent 1971a1c305
commit d52e14ce01
4 changed files with 52 additions and 33 deletions
@@ -0,0 +1,6 @@
class AddHeightAndWeightToClient < ActiveRecord::Migration
def change
add_column :clients, :weight, :float
add_column :clients, :height, :float
end
end