1
0
Fork 1
mirror of https://github.com/pixelfed/pixelfed.git synced 2024-12-21 23:32:39 +00:00

Update Bookmark model

This commit is contained in:
Daniel Supernault 2019-02-03 14:47:26 -07:00
parent 884f675d30
commit 83d5fc404d
No known key found for this signature in database
GPG key ID: 0DEF1C662C9033F7

View file

@ -6,5 +6,16 @@ use Illuminate\Database\Eloquent\Model;
class Bookmark extends Model
{
protected $fillable = ['profile_id', 'status_id'];
protected $fillable = ['profile_id', 'status_id'];
public function status()
{
return $this->belongsTo(Status::class);
}
public function profile()
{
return $this->belongsTo(Profile::class);
}
}