From 588384543bdd4a80db3f8f0445f1d61ad9d8d646 Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Fri, 3 Sep 2021 22:46:06 -0600 Subject: [PATCH] Update Story model, use immutable datetime --- app/Story.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Story.php b/app/Story.php index 6f4335627..dfd95502d 100644 --- a/app/Story.php +++ b/app/Story.php @@ -22,7 +22,7 @@ class Story extends Model public $incrementing = false; protected $casts = [ - 'expires_at' => 'immutable_datetime' + 'expires_at' => 'datetime' ]; protected $fillable = ['profile_id', 'view_count'];