Ruby on Rails generates model field:type - what are the options for field:type?

后端 未结 8 1784
遥遥无期
遥遥无期 2020-12-22 15:42

I\'m trying to generate a new model and forget the syntax for referencing another model\'s ID. I\'d look it up myself, but I haven\'t figured out, among all my Ruby on Rails

8条回答
  •  囚心锁ツ
    2020-12-22 16:08

    Remember to not capitalize your text when writing this command. For example:

    Do write:

    rails g model product title:string description:text image_url:string price:decimal
    

    Do not write:

    rails g Model product title:string description:text image_url:string price:decimal
    

    At least it was a problem to me.

提交回复
热议问题