class AddWeightToUsers < ActiveRecord::Migration[6.0]
  def change
    add_column :users, :body_weight, :decimal, :precision => 6, :scale => 2
    add_column :users, :body_hight, :integer
  end
end
