最近项目里遇到一个问题,用的是 rails5.0 版本。有一个多对多的关系
has_many :assign_objectives,->{uniq}, through: :assign_key_results, source: :objective
这应该是 rails3,rails4 版本的写法,我在网上查了一下,只查到 rails5.1 的写法
has_many : assign_objectives, through: :assign_key_results, :uniq => true, source: :objective
请问 rails5.0 的正确写法是什么?