Skip to content

Commit 7830843

Browse files
authored
Use INT for job table deleted_at
1 parent a461930 commit 7830843

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/system/Database/Live/ModelTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1413,7 +1413,7 @@ public function testPurgeDeletedWithSoftDeleteFalse()
14131413

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

14181418
$model->purgeDeleted();
14191419

0 commit comments

Comments
 (0)