From 814f0c8127c95acfc9b980dbb2f4cfc0c3123edc Mon Sep 17 00:00:00 2001 From: Annika Backstrom Date: Thu, 30 May 2024 21:48:57 +0100 Subject: [PATCH] Remove old manually assigned table name --- app/Models/BookmarkTag.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/Models/BookmarkTag.php b/app/Models/BookmarkTag.php index 5fd89ba..bc8d96c 100644 --- a/app/Models/BookmarkTag.php +++ b/app/Models/BookmarkTag.php @@ -10,8 +10,6 @@ class BookmarkTag extends Pivot { use HasFactory; - protected $table = 'bookmarks_tags'; - public function parent() { return $this->belongsTo(Bookmark::class, 'bookmark_id');