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.
23 lines
670 B
23 lines
670 B
11 years ago
|
class CreateBikeWheelSizes < ActiveRecord::Migration
|
||
|
def up
|
||
|
create_table(:bike_wheel_sizes) do |t|
|
||
|
t.string :twmm
|
||
|
t.string :rdmm
|
||
|
t.string :twin
|
||
|
t.string :rdin
|
||
|
t.string :twfr
|
||
|
t.string :rdfr
|
||
|
t.string :description
|
||
|
t.string :tire_common_score
|
||
|
end
|
||
|
|
||
|
#create the default undetermined wheel size record
|
||
|
BikeWheelSize.create( twmm: 0, rdmm: 0, rdin: 0, twin: 0, rdfr: 0, twfr: 0, description: "UNDETERMINED", tire_common_score: 0)
|
||
|
ActiveRecord::Base.connection.execute(IO.read(File.join(Rails.root, "db", "seed", "sql", "common_wheel_sizes.sql")))
|
||
|
end
|
||
|
|
||
|
def down
|
||
|
drop_table :bike_wheel_sizes
|
||
|
end
|
||
|
end
|