Skip to content

Commit

Permalink
Fixes incorrect timestamp on Scheduled Maintenances
Browse files Browse the repository at this point in the history
Fixes #2578
  • Loading branch information
Ozzy Simpson committed Jun 24, 2017
1 parent f3df8b4 commit 1548a96
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/Models/Schedule.php
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ class Schedule extends Model implements HasPresenter
'name' => 'string',
'message' => 'string',
'status' => 'int',
'scheduled_at' => 'date',
'completed_at' => 'date',
'scheduled_at' => 'datetime',
'completed_at' => 'datetime',
];

/**
Expand Down

0 comments on commit 1548a96

Please sign in to comment.