Conditions | 3 |
Paths | 3 |
Total Lines | 13 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 12 |
Changes | 0 |
1 | <?php |
||
38 | public function handle() |
||
39 | { |
||
40 | DB::statement('SET FOREIGN_KEY_CHECKS=0;'); |
||
41 | |||
42 | $tables = DB::select('SHOW TABLES'); |
||
43 | foreach ($tables as $table) { |
||
44 | foreach ($table as $key => $value) { |
||
45 | DB::statement('DROP TABLE `' . $value . '`'); |
||
46 | } |
||
47 | } |
||
48 | DB::statement('SET FOREIGN_KEY_CHECKS=1;'); |
||
49 | $this->info('All tables dropped from database!'); |
||
50 | } |
||
51 | } |
||
52 |