How to run migrations inside a module?

I’m using commandbox to run migrations.

However migrations inside module are not running.

How can I accomplisg this?

You would need to pass a “directory” argument to the “migrate” command. The default is “resources/database/migrations” and any other directories would need that argument

Yes, the argument is migrationsDirectory.

That was driving me in confusion.

Thanks