NotificationHistory: Replace send_time w/ event_time

This commit is contained in:
Eric Lippmann 2019-11-03 21:58:32 +01:00
parent 9e43d4e141
commit 378d065d33

View file

@ -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'
]));
}