From a64aef6726eae53d2e2835a3388c738395666de9 Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Sun, 2 Jan 2022 23:27:47 -0700 Subject: [PATCH] Update Profile model, cast last_status_at as timestamp --- app/Profile.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/Profile.php b/app/Profile.php index 2c216e6d7..17063ab8c 100644 --- a/app/Profile.php +++ b/app/Profile.php @@ -21,7 +21,8 @@ class Profile extends Model protected $dates = [ 'deleted_at', - 'last_fetched_at' + 'last_fetched_at', + 'last_status_at' ]; protected $hidden = ['private_key']; protected $visible = ['id', 'user_id', 'username', 'name'];