From a37f21defb437aae6a20c351d25e05d595ff49d7 Mon Sep 17 00:00:00 2001 From: Franck DAKIA Date: Sun, 23 Mar 2025 06:46:34 +0000 Subject: [PATCH] fix: database notification table name --- src/Database/Notification/DatabaseNotification.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/Database/Notification/DatabaseNotification.php b/src/Database/Notification/DatabaseNotification.php index 5c88e204..e75243f2 100644 --- a/src/Database/Notification/DatabaseNotification.php +++ b/src/Database/Notification/DatabaseNotification.php @@ -16,6 +16,13 @@ class DatabaseNotification extends Model 'data' => 'array', ]; + /** + * The table name + * + * @var string + */ + protected string $table = "notifications"; + public function __construct(array $attributes = []) { parent::__construct($attributes);