| Conditions | 1 |
| Paths | 1 |
| Total Lines | 19 |
| Code Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 41 | public function handle() |
||
| 42 | { |
||
| 43 | $this->info('Leere Games Tabelle'); |
||
| 44 | \DB::table('games')->truncate(); |
||
| 45 | |||
| 46 | $this->info('Leere comments Tabelle'); |
||
| 47 | \DB::table('comments')->truncate(); |
||
| 48 | |||
| 49 | $this->info('Leere games_files Tabelle'); |
||
| 50 | \DB::table('games_files')->truncate(); |
||
| 51 | |||
| 52 | $this->info('Leere games_developers Tabelle'); |
||
| 53 | \DB::table('games_developers')->truncate(); |
||
| 54 | |||
| 55 | $this->info('Leere developer Tabelle'); |
||
| 56 | \DB::table('developer')->truncate(); |
||
| 57 | |||
| 58 | $this->info('Tabellen wurden geleert.'); |
||
| 59 | } |
||
| 60 | } |
||
| 61 |