mirror of
https://github.com/fspc/BikeShed-1.git
synced 2025-03-01 01:03:23 -05:00
-Update some migrations to match source schema, will need to add timestamps back eventually
10 lines
224 B
Ruby
10 lines
224 B
Ruby
class CreateBikeModels < ActiveRecord::Migration
|
|
def change
|
|
create_table :bike_models do |t|
|
|
t.string "model", :null => false
|
|
t.integer "bike_brand_id", :null => false
|
|
#t.timestamps
|
|
end
|
|
end
|
|
end
|