Back to News
Advertisement
ccmodiano about 7 hours ago 2 commentsRead Article on dblift.com

ZH version is available. Content is displayed in original English for accuracy.

I’ve been working for a while on DBLift, an open-source database migration toolkit for Python teams. DBLift follows the same model flyway does with the same main commands and the same history table structure making it easy to switch from one to the other with the import_flyway command.

By default DBLift is out of order meaning that any unapplied migration is eligible to be applied contrary to flyway which refuse to apply any migration with a lower version until you force it. You can still apply the original flyway model you can still opt-in with the —strict flag. https://docs.dblift.com/migrations-versioning

The main difference is the runtime, No JVM. If you already work in python DBLift integrates with your existing tooling: pip, sqlalchemy, Django, Flask…

Honest feedback welcome — especially if you're currently using Flyway on a Python project and it works fine, I'd like to understand what I'm missing. GitHub: https://github.com/dblift/dblift Docs: https://docs.dblift.com Move from Flyway: https://docs.dblift.com/move-from-flyway Supported databases: https://docs.dblift.com/supported-databases Ordering: https://docs.dblift.com/migrations-versioning

Advertisement

Discussion (2 Comments)Read Original on HackerNews

tianzhouabout 5 hours ago
Congrats on the launch, good project name and glad to see new project trying to address the classic schema migration problem.
cmodianoabout 2 hours ago
Thank you very much, there are a lot of them already, tried to address the Python ecosystem integration to the maximum.