TryGhost / knex-migrator

DB migration tool for knex.js

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Comparison with other migration tools

kirrg001 opened this issue · comments

commented

Issue we can reference in our README.md or in other places.

Inbuilt Knex Migrations

Read here what the major downsides of knex migrations are.

DB-Migrate

Latest version uses autocommit to handle database migrations, which does not solve the problem of DDL/DML statements in MySQL.

If you are interested in why, continue reading here.

Furthermore, they don't support a full set of features e.g. full atomic rollbacks.

knex-migrate

#113