softDelete
Deleting a record but the data is retained.
$db->{table}->softDelete($where);$isDeleted = $db->news->softDelete(1);
// or
$isDeleted = $db->news->softDelete(array('name' => 'Test News'));// if successful
true
// else
falseLast updated
Deleting a record but the data is retained.
$db->{table}->softDelete($where);$isDeleted = $db->news->softDelete(1);
// or
$isDeleted = $db->news->softDelete(array('name' => 'Test News'));// if successful
true
// else
falseLast updated