在我的 Rails 4 应用程序中,我的 Developer 模型有一个用户,例如:
class Developer < ActiveRecord::Base
has_one :user, as: :account
...
end
在我的用户模型中,我有
class User < ActiveRecord::Base
belongs_to :account, polymorphic: true
end
创建开发人员记录时,我希望自动创建与开发人员关联的用户。这可能吗?或者有没有办法按照rails指南做到这一点?