Add nullable foreign key in Rails

后端 未结 3 1044
孤街浪徒
孤街浪徒 2020-12-13 17:40

Referencing to Rails 4.2 add_foreign_key support:

    # add a foreign key to `articles.author_id` referencing `authors.id`
    add_foreign_key :articles, :au         


        
3条回答
  •  眼角桃花
    2020-12-13 18:00

    Adding optional: true along with belongs_to :author in article model will do the job.

提交回复
热议问题