Table operations - adampatterson/Dingo-Framework GitHub Wiki
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');
Just do this to get rid of a table named 'wow':
db::drop('wow');
To truncate table 'wow' do this:
db::truncate('wow');