hi, experts
I have a question about Yii2's db migration.
an application have two modules each with their own migration, but they share the same database, and their migrations have interdependencies.
<app/modules>
|_ module_1/
| |_migrations/
| |_ migration1
| |_ migration 3
|_ module_2/
|_migrations/
|_migration2
|_migration4
I’m wondering whether Yii2 can support such kind of db migrations, if not , we have to merge all migrations under a single path.