eloquent关系与数据库设计的问题

假设我现在有一个post类
class post extends eloquent {
public function comment() {
return $this->hasMany('Comment');
}
}

那么在数据库设计中comments表需要设置引用posts表post_id的外键吗?
还是eloquent自动帮助我们完成了,不需要再设置
已邀请:

FiveSay - 成武

赞同来自:

需要自行设置。

iralance

赞同来自:

写几个demo就知道 1对1 1对多 多对多的关系了

要回复问题请先登录注册