Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
markvaneijk committed Sep 9, 2024
1 parent 6671873 commit bf66433
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Models/Mail.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,12 +78,14 @@ class Mail extends Model
'clicks' => 'integer',
'sent_at' => 'datetime',
'resent_at' => 'datetime',
'accepted_at' => 'datetime',
'delivered_at' => 'datetime',
'last_opened_at' => 'datetime',
'last_clicked_at' => 'datetime',
'complained_at' => 'datetime',
'soft_bounced_at' => 'datetime',
'hard_bounced_at' => 'datetime',
'unsubscribed_at' => 'datetime',
'created_at' => 'datetime',
'updated_at' => 'datetime',
];
Expand Down
1 change: 1 addition & 0 deletions src/Models/MailEvent.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ class MailEvent extends Model
'type' => EventType::class,
'payload' => 'object',
'created_at' => 'datetime',
'updated_at' => 'datetime',
'occurred_at' => 'datetime',
];

Expand Down

0 comments on commit bf66433

Please sign in to comment.