From 512fb6420471e33cc4bc8f3c72aa800b7ba39217 Mon Sep 17 00:00:00 2001 From: Thomas Debay Date: Wed, 13 Jan 2021 00:51:22 +0100 Subject: [PATCH] fix table name reference in ScheduledNotification model (#71) --- src/Models/ScheduledNotification.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Models/ScheduledNotification.php b/src/Models/ScheduledNotification.php index 8eb46b7..61dd941 100644 --- a/src/Models/ScheduledNotification.php +++ b/src/Models/ScheduledNotification.php @@ -48,7 +48,7 @@ public function __construct(array $attributes = []) { parent::__construct($attributes); - $this->table = config('snooze.snooze_table'); + $this->table = config('snooze.table'); $this->serializer = app(Serializer::class); }