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.
我有一个用户模型,它有一个配置文件和一个属于用户的配置文件模型。我怎样才能确保一旦用户制作了个人资料。该用户无法创建其他配置文件。
class Profile < ActiveRecord::Base belongs_to :user validates_uniqueness_of :user_id end