I use "vanilla" Pyramid 1.4 under Gentoo, and I want to make changes to my tables and commit them without deleting the table (and all its data), and then re-creating it. I heard that the solution to this is circuit migration.
As a long-term user of Django, I used django-south , but now I'm using Pyramid. I cannot find a way to handle migrations. I read about sqlalchemy-migrate , which looks really good, but I'm not sure how to make it work with Pyramid.
Is there a way to handle schema migrations in Pyramid 1.4? And if using sqlalchemy-migrate is a smart option, how do I get it to work with Pyramid?
Greetings.
source share