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