我正在设计一个简单的约会应用程序,我的用户模型有男性和女性的两个布尔字段,我想要一个用户注册为男性的情况,应该向他展示女性用户添加为朋友,如果它是女性同样,应该显示男性用户。我的用户模型如下
t.string :email, :null => false, :default => ""
t.string :bio, :null => false, :default => "update whatsup with yourself and click here to edit it"
t.string :username, :null => false, :default => ""
t.string :encrypted_password, :null => false, :default => ""
t.boolean :admin
t.boolean :author
t.boolean :male
t.boolean :female
我已经实现了友谊模型