Skip to content

Table operations

Adam Patterson edited this page Dec 18, 2012 · 1 revision

Drop A Table

Just do this to get rid of a table named 'wow':

db::drop('wow');

Truncate A Table

To truncate table 'wow' do this:

db::truncate('wow');
Clone this wiki locally