Dear Python engineers,
For database schema migrations, which PyPi package would you suggest/have the best experience with? #lazyweb
Google search revealed:
- yoyo-migrations
- migratory
- alembic
any other one I should consider?
Dear Python engineers,
For database schema migrations, which PyPi package would you suggest/have the best experience with? #lazyweb
Google search revealed:
- yoyo-migrations
- migratory
- alembic
any other one I should consider?
@tdpauw General advice is:
If your project uses Django at all, use the Django ORM and Django’s migration tool.
Otherwise, use SQLAlchemy, with Alembic for migrations.
These are the two “standard stacks”.