From 378d065d335d4e612e522bd0c8e45ff101df726c Mon Sep 17 00:00:00 2001 From: Eric Lippmann Date: Sun, 3 Nov 2019 21:58:32 +0100 Subject: [PATCH] NotificationHistory: Replace send_time w/ event_time --- library/Eagle/Model/NotificationHistory.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/Eagle/Model/NotificationHistory.php b/library/Eagle/Model/NotificationHistory.php index a96e7ec2..6b44d644 100644 --- a/library/Eagle/Model/NotificationHistory.php +++ b/library/Eagle/Model/NotificationHistory.php @@ -29,7 +29,7 @@ class NotificationHistory extends Model 'service_id', 'notification_id', 'type', - 'send_time', + 'event_time', 'state', 'previous_hard_state', 'author', @@ -41,7 +41,7 @@ class NotificationHistory extends Model public function createBehaviors(Behaviors $behaviors) { $behaviors->add(new Timestamp([ - 'send_time' + 'event_time' ])); }