我有两个模型用户和传记,两者都有一对一的关联,我想用户只添加一个传记..这是模型:-
class Biography < ActiveRecord::Base
attr_accessible :biography, :date, :title, :individual_id
belongs_to :user
end
class User < ActiveRecord::Base
has_one :biography
end
我如何验证用户以便他只能添加一份传记。请帮忙!