Migrations

You can define a custom path for your migrations file or create some migrations in another path. to register your migrations, pass your custom paths here.

1return [
2    // ...
3    'migrations' => [
4        database_path( 'migrations' ),
5        // you custom path goes here
6    ]
7];