1
0
mirror of https://github.com/fspc/BikeShed-1.git synced 2025-02-28 16:53:23 -05:00
BikeShed-1/db/migrate/20121205040400_create_bike_brands.rb
Jason Denney 7bf4c4d601 Added bike_brands and bike_models sql data
-Update some migrations to match source schema, will need to add timestamps back eventually
2012-12-08 14:59:49 -05:00

9 lines
160 B
Ruby

class CreateBikeBrands < ActiveRecord::Migration
def change
create_table :bike_brands do |t|
t.string "brand"
#t.timestamps
end
end
end