Pyramid I use for web development and would like to use with the alembic for migrations from my database.
I started a project using the scaffold `alchemy` where` Base` class that is used as `declarative_base` is within the` models.py` file. My problem is this: `--autogenerate` to work properly, I have to keep my models in the` models.py` file, if I separate them, it's like the alembic or sqlalchemy did not find them, or it does not. Someone had any problem with this?
ps: already I put my `` Base.metadata` in env.py`.