1
0
mirror of https://github.com/fspc/BikeShed-1.git synced 2025-02-28 16:53:23 -05:00
BikeShed-1/db/migrate/20121205040602_create_bike_models.rb

10 lines
224 B
Ruby
Raw Normal View History

class CreateBikeModels < ActiveRecord::Migration
def change
create_table :bike_models do |t|
2012-12-04 23:36:50 -05:00
t.string "model", :null => false
t.integer "bike_brand_id", :null => false
#t.timestamps
end
end
end