Total Complexity | 5 |
Total Lines | 43 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | trait DatabaseMigrations |
||
10 | { |
||
11 | use IlluminateDatabaseMigrations; |
||
12 | |||
13 | /** |
||
14 | * The parameters that should be used when running "migrate:fresh". |
||
15 | * |
||
16 | * @return array |
||
17 | */ |
||
18 | 28 | protected function migrateFreshUsing() |
|
32 | } |
||
33 | |||
34 | /** |
||
35 | * Determine if types should be dropped when refreshing the database. |
||
36 | * |
||
37 | * @return array<string, array<string>|string> |
||
38 | */ |
||
39 | 28 | protected function setMigrationPaths() |
|
54 |