Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
has_oneプロファイルを持つユーザーモデルと、belongs_toユーザーのプロファイルモデルがあります。ユーザーがプロファイルを作成したら、どうすれば確認できますか。そのユーザーは別のプロファイルを作成できません。
class Profile < ActiveRecord::Base belongs_to :user validates_uniqueness_of :user_id end