phpcake HABTM用户有很多朋友,表命名约定

时间:2011-05-02 21:29:00

标签: php cakephp naming has-and-belongs-to-many convention

我正在建立一个社交网络风格的网站,人们可以在其联系人列表中找到其他人,我想在同桌用户上将此关系建模为HABTM关系,但根据http://book.cakephp.org/view/1044/hasAndBelongsToMany-HABTM我必须给这样的create table:

CREATE TABLE IF NOT EXISTS `users_users` (
  `users_users.id` int(11) NOT NULL AUTO_INCREMENT,
    `users_users.user_id` int(11) NOT NULL ,
      `users_users.user_id` int(11) NOT NULL ,
  PRIMARY KEY (`users_users.id`)

) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=9

请帮助,我该如何避免重复?

1 个答案:

答案 0 :(得分:2)

对于引用同一个表的HABTM关系,您需要更改外键的名称。定义users_users,其中包含三个字段:iduser_idfriend_id

在您的用户模型中,设置关系,分配显式foreignKey和associationForeignKey:

var $hasAndBelongsToMany = array(
    'Friend' => array(
        'joinTable' => 'users_users',
        'className' => 'User',
        'foreignKey' => 'user_id',
        'associationForeignKey' => 'friend_id'
    )
);