我在定义类关系时遇到问题。
在此之前,让我向您展示我的数据库结构
Agent table
id
username
password
Views table
id
agent_id
accessor_id
一个代理可以允许很多代理查看他们的帖子。表格视图包含代理所有者和允许查看其发布的代理的数据。
我对视图模型的关系声明声明如下:
/**
* @return array relational rules.
*/
public function relations() {
// NOTE: you may need to adjust the relation name and the related
// class name for the relations automatically generated below.
return array(
'agents' => array(self::BELONGS_TO, 'Agent', 'agent_id'),
);
}
我对代理模型的关系声明声明如下:
/**
* @return array relational rules.
*/
public function relations() {
// NOTE: you may need to adjust the relation name and the related
// class name for the relations automatically generated below.
return array(
'groups'=>array(self::BELONGS_TO, 'Group', 'group_id'),
'views' => array(self::BELONGS_TO, 'View', 'agent_id'),
);
}
当我尝试运行应用程序时收到以下错误。
The relation "views" in active record class "Agent" is specified with an invalid foreign key "agent_id". There is no such column in the table "agents".
我该如何解决这个问题?请帮忙。谢谢!