1
0
mirror of https://github.com/fspc/BikeShed-1.git synced 2025-04-04 05:33:22 -04:00
BikeShed-1/db/migrate/20131019150459_create_bike_wheel_sizes.rb
2017-01-19 15:40:19 +06:00

19 lines
364 B
Ruby

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