From 11038e43a644f401b0c7dbd96def1dfb0ae207c6 Mon Sep 17 00:00:00 2001 From: Victor Westerlund Date: Mon, 16 Feb 2026 11:21:48 +0100 Subject: [PATCH] fix: proper table reference for PostMeta --- src/Posts/PostMeta.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Posts/PostMeta.php b/src/Posts/PostMeta.php index 750f08d..e5c54d9 100644 --- a/src/Posts/PostMeta.php +++ b/src/Posts/PostMeta.php @@ -93,7 +93,7 @@ */ public function delete(): void { $this->db - ->from(PostMetaTable::TABLE_NAME) + ->from(Database::get_table(PostMetaTable::TABLE_NAME)) ->delete([PostMetaTable::META_ID->value => $this->id]); }