可以说我有以下设置
class User < ActiveRecord::Base
has_many :address
accepts_nested_attributes_for :address, allow_destroy: true
end
class Address < ActiveRecord::Base
attr_accessible :house_color, :street_address
end
出于某种原因,我只想允许给定用户拥有一个给定颜色的地址。
我要如何锁定?就像是
validates :address.house_color.unique
除了功能......
谢谢!