I have a database with multiple schemas in which multiple schemas exist and each schema has tables related to a different part of my business.
I have a schema registration
that contains relevant tables to a registration app. The tables related to the registration
schema are just a small subset of all the tables in the data and are functionally and relationally unrelated to tables in other schemas. I want to start working with Alembic versioning for this schema. However, I can not find how to setup Alembic so that it's only operating on tables related to a specific schema instead of the whole database. Is there a way to do this without having to implement all tables in Alembic? Running on MSSQL.