Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

CakePHP deleting all records in a table

I want to delete all records from my tables using CakePHP syntax, how can I ?

I tried, deleteAll but it works with conditions only, the same way for delete, Is there any other way, I can empty my tables?

Let me know !

like image 304
Aditya P Bhatt Avatar asked May 02 '11 07:05

Aditya P Bhatt


1 Answers

http://book.cakephp.org/2.0/en/models/deleting-data.html

I haven't used deleteAll() to delete an entire table, so I don't know whether you can call it without arguments (edit: you can't call it without arguments). However, you could just use

$this->Model->deleteAll(array('1 = 1'));

However, I think it would be better if you just ran the TRUNCATE SQL command via the query() method.

$this->Model->query('TRUNCATE table;');
like image 186
JohnP Avatar answered Sep 20 '22 22:09

JohnP