Belongs_to presence in Rails 5 not working

前端 未结 3 1280
無奈伤痛
無奈伤痛 2021-02-15 16:16

To my knowledge, the new default in Rails 5 requires belongs_to associations to be present. I made a model with this association, but the problem is I don\'t get pr

3条回答
  •  一整个雨季
    2021-02-15 16:27

    According to the issue re weird behaviour of config belongs_to_required_by_default, it seems like one of your other gems intervenes in ActiveRecord::Base and causes the bug.

    One of workarounds to the issue is to move the line

    config.active_record.belongs_to_required_by_default = true
    

    from initializers directly into application.rb.

    This worked for me smoothly.

提交回复
热议问题