Fix table name

This commit is contained in:
Toby Zerner 2018-07-21 15:24:33 +09:30
parent fe73cf3237
commit fb6b2d05b1

View File

@ -39,7 +39,7 @@ class UserState extends AbstractModel
/**
* {@inheritdoc}
*/
protected $table = 'discussions_users';
protected $table = 'discussion_user';
/**
* {@inheritdoc}
@ -72,7 +72,7 @@ class UserState extends AbstractModel
*/
public function discussion()
{
return $this->belongsTo(Discussion::class, 'discussion_id');
return $this->belongsTo(Discussion::class);
}
/**
@ -82,7 +82,7 @@ class UserState extends AbstractModel
*/
public function user()
{
return $this->belongsTo(User::class, 'user_id');
return $this->belongsTo(User::class);
}
/**