We need to build a large application that split to multiple modules. Each module has own alembic version table, and in each module we generated the alembic migration, but the problem when I generate a migration file, inside it generate drop of all database tables, I can't specify the context of each migration.
What I want to do is in each module, I want to generate only the migration script about models inside this module and not for others ?
I don't know if I must use a schema per module to resolve that ?