我刚刚在模型上添加了nullify依赖,但由于某些原因它无法正常工作,
class Category < ApplicationRecord
has_one :task, dependent: :nullify
和
class Task < ApplicationRecord
belongs_to :category, optional: true
每个任务都有一个类别,并且关联正常,但是nullify却没有,我在这里错过了什么?预先谢谢你!
编辑: There's no category, but Task's category_id is still 22.