Skip to content

Commit

Permalink
Merge pull request #2596 from oznorts/patch-1
Browse files Browse the repository at this point in the history
Fixes incorrect timestamp on Scheduled Maintenances
  • Loading branch information
jbrooksuk committed Jun 25, 2017
2 parents f3df8b4 + 1548a96 commit 7be26aa
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 7be26aa

Please sign in to comment.