I have a library that's part of a bigger project. The library uses its own schema in a (PostgreSQL) database shared with the larger project.
I want to use alembic revision --autogenerate to only generate migrations for the library's schema and ignore changes to the tables in the main/default schema. Is there any option for doing this?
FWIW, I've tried the include_schemas=False parameter to context.configure in env.py, but it doesn't seem to do anything.

所有评论(0)