mirror of https://github.com/fspc/BikeShed-1.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
364 B
18 lines
364 B
class CreateBikeWheelSizes < ActiveRecord::Migration
|
|
def up
|
|
create_table(:bike_wheel_sizes) do |t|
|
|
t.integer :twmm
|
|
t.integer :rdmm
|
|
t.string :twin
|
|
t.string :rdin
|
|
t.string :twfr
|
|
t.string :rdfr
|
|
t.string :description
|
|
t.string :tire_common_score
|
|
end
|
|
end
|
|
|
|
def down
|
|
drop_table :bike_wheel_sizes
|
|
end
|
|
end
|
|
|