From e5808a8f5c1b2fd314afea5027f0cfb2250fad75 Mon Sep 17 00:00:00 2001 From: JORGE Date: Fri, 20 Dec 2024 15:00:47 -0400 Subject: [PATCH] [TM-1531] change array to json --- app/Models/DelayedJob.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Models/DelayedJob.php b/app/Models/DelayedJob.php index ca69dbfd..25b599e3 100644 --- a/app/Models/DelayedJob.php +++ b/app/Models/DelayedJob.php @@ -22,7 +22,7 @@ class DelayedJob extends Model protected $casts = [ 'uuid' => 'string', - 'metadata' => 'array', + 'metadata' => 'json', ]; public function creator()