在Rails5中,
对于关联关系preferences , 存在例如 use_id( or order_id,.... ) 的一方 默认这些order_id不能为空
例如,
model A belongs_to model B
model A 中存在 mode B的id: b_id,
rails5中 默认 b_id 不能为空
在此加上 optional: true, 则 允许 b_id 为空
在Rails5中,
对于关联关系preferences , 存在例如 use_id( or order_id,.... ) 的一方 默认这些order_id不能为空
例如,
model A belongs_to model B
model A 中存在 mode B的id: b_id,
rails5中 默认 b_id 不能为空
在此加上 optional: true, 则 允许 b_id 为空