mirror of
https://github.com/fspc/bike-database.git
synced 2025-04-04 10:03:22 -04:00
7 lines
164 B
Ruby
7 lines
164 B
Ruby
class AddHeightAndWeightToClient < ActiveRecord::Migration
|
|
def change
|
|
add_column :clients, :weight, :float
|
|
add_column :clients, :height, :float
|
|
end
|
|
end
|