Railsでこのようなことをしたいのですが、問題に向かっていると感じています。
class Account < ActiveRecord::Base
end
class BankAccount < Account
has_many :users
end
class PaypalAccount < Account
has_many :users, :limit 1
end
これは行く方法ですか?
はいの場合、ユーザーモデルでこれを安全に実行できますか?
class User < ActiveRecord::Base
belongs_to :account
end