mirror of
https://github.com/fspc/BikeShed-1.git
synced 2025-04-04 05:33:22 -04:00
10 lines
223 B
Ruby
10 lines
223 B
Ruby
class CreateBikeModels < ActiveRecord::Migration
|
|
def change
|
|
create_table :bike_models do |t|
|
|
t.integer "bike_brand_id", :null => false
|
|
t.string "model", :null => false
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|