| Conditions | 1 |
| Paths | 1 |
| Total Lines | 6 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 30 | public function handle() |
||
| 31 | { |
||
| 32 | $migrationPath = config('dbm.migrations', '/vendor/codexshaper/laravel-database-manager/database/migrations'); |
||
| 33 | // Migrate Database |
||
| 34 | $this->info('Migrating the database manager tables into your application'); |
||
| 35 | $this->call('migrate', ['--path' => $migrationPath, '--force' => 'force']); |
||
| 36 | } |
||
| 38 |