yoyo-database-migrations icon indicating copy to clipboard operation
yoyo-database-migrations copied to clipboard

Database schema migration tool written in Python

Results 4 yoyo-database-migrations issues
Sort by recently updated
recently updated
newest added

Add support of Exasol DB via Pyexasol driver

I am trying to use yoyo 7.0.0 on Python 3.7 against Postgres 11 on Google Cloud SQL. I propose there is a significant typo in the yoyo documentation about transactionality....

Add full support for Python 3.6/3.7 (annotations, async/io databases drivers). This will be a braeking change and only python 3.6/7 will be supported.

enhancement

Now is possible to `apply` and `rollback` all the migration from python code: ```python from yoyo import read_migrations from yoyo import get_backend backend = get_backend('postgres://myuser@localhost/mydatabase') migrations = read_migrations('path/to/migrations') with backend.lock():...

enhancement