Skip to content

Commit

Permalink
Use INT for job table deleted_at
Browse files Browse the repository at this point in the history
  • Loading branch information
MGatner authored Jun 11, 2019
1 parent a461930 commit 7830843
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/system/Database/Live/ModelTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -1413,7 +1413,7 @@ public function testPurgeDeletedWithSoftDeleteFalse()

$this->db->table('job')
->where('id', 1)
->update(['deleted_at' => date('Y-m-d H:i:s')]);
->update(['deleted_at' => time()]);

$model->purgeDeleted();

Expand Down

0 comments on commit 7830843

Please sign in to comment.