deleteAll cakephp 2

To delete all records in CakePHP 2, you can use the deleteAll method. Here is an example of how to use it:

$this->ModelName->deleteAll(array('conditions' => array('field_name' => 'value')));

Replace ModelName with the name of your model, field_name with the name of the field you want to use for the condition, and value with the value you want to match. This will delete all records that match the specified condition.

Please note that the deleteAll method does not trigger any callbacks or validation rules defined in the model. If you need to trigger callbacks or validation, you can use the find method to retrieve the records first and then delete them one by one.

I hope this helps!