You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Having an agnostic migration tool is very helpful for 2 cases:
59
+
Having an agnostic migration tool is very helpful for 3 cases:
60
60
61
61
1. The tool you are wanting to manage is not a traditional relational database, and you want to be able to use a liquibase/flyway style migration to manage its state reliably and at scale.
62
62
2. You want to be able to manage the migrations or state of multiple dependencies with the same tooling.
63
63
3. You want to be able to leverage existing code in your codebase to interact with the tool and create the migrations. This can be something like an sdk you are familiar with, or custom code you have already written for your application.
64
64
65
65
## Inspiration
66
66
67
-
This library was created as a lightweight python implementation of a pattern similar to [Umzug](https://github.com/sequelize/umzug), which is a similar tool written for typescript.
67
+
This library was created as a lightweight python implementation of a pattern similar to [Umzug](https://github.com/sequelize/umzug), which is a similar tool written for typescript.
0 commit comments