fix(migration): store subjectAlternativeNames as a json array in the db

This commit is contained in:
peaklabs-dev
2025-02-03 22:35:00 +01:00
parent f871c1067b
commit fba95c3729
3 changed files with 3 additions and 2 deletions

View File

@@ -21,6 +21,7 @@ class SslCertificate extends Model
protected $casts = [
'ssl_certificate' => 'encrypted',
'ssl_private_key' => 'encrypted',
'subject_alternative_names' => 'array',
'valid_until' => 'datetime',
];