1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00

Merge pull request #6934 from beganovich/account-model-casts

Fixes for Account model casts
This commit is contained in:
David Bomba 2021-11-06 07:01:36 +11:00 committed by GitHub
commit c0f6352230
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -68,6 +68,9 @@ class Account extends BaseModel
];
protected $casts = [
'updated_at' => 'timestamp',
'created_at' => 'timestamp',
'deleted_at' => 'timestamp',
'onboarding' => 'object'
];