How to use multiple paths in phinx migrations

Phinx configuration documentation shows this as a possible valid setup.

paths:
    migrations:
        - application/module1/migrations
        - application/module2/migrations

But the create syntax only takes one argument, the name of the of the new migration file. It feels like there should be a way to target the different migration paths so each paths migration can be run independently.

The migrate command also does not show any awareness multiple migration paths.

What’s the thinking here?

I’d like to have different sequences of migrations run… am I misunderstanding something here?

Found my own answer.

Running create brings up a list of choices for the target directory.

Running migrate runs all migrations in all directories.

I haven’t explored the details of rollback. Presumably, it runs all directories like migrate