fix: add datetime cast to finished_at column (#7418)

This commit is contained in:
Muhammed Mustafa AKŞAM 2026-01-04 19:23:22 +03:00 committed by GitHub
parent cc3e39db1f
commit cbf412ea35
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -41,6 +41,10 @@ class ApplicationDeploymentQueue extends Model
{
protected $guarded = [];
protected $casts = [
'finished_at' => 'datetime',
];
public function application()
{
return $this->belongsTo(Application::class);