Does rails scaffold command support generate belongs_to or many to many model middle table migration info?

眉间皱痕 提交于 2020-01-04 12:04:52

问题


Product,Category is two model on rails3 the relation between them are follow:

product has_and_belongs_to_many categories

category has_and_belongs_to_many products

i can use scaffold generate migration for this two modle use

rails g scaffold product name:string
rails g scaffold category name:string

but how can i generate the many to many model's middle table migration info,or i need write it manually,if so this is hard for me,hope someone could help me.


回答1:


You need create this table by yourself

   create_table :products_categories, :id => false do |t| 
     t.integer :product_id 
     t.integer :category_id
   end

Warning, you need define the :id to false, because this table no need id column. If you have an id column, the table is invalid to be used on has_and_belongs_to_many .




回答2:


rails g model ProductCategories product:references category:references


来源:https://stackoverflow.com/questions/4057106/does-rails-scaffold-command-support-generate-belongs-to-or-many-to-many-model-mi

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!