Commit Graph

16 Commits

Author SHA1 Message Date
7ae5eec2c3 chore: add support transactional ddl for client
I didn't know that mysql doesn't support transactional ddl.
It means that we cannot create table, alter table and etc. in
transaction. At the moment migra supports only postgres client,
that can be use transaction for ddl.
2021-04-24 22:39:44 +03:00
f98dd4f0c8 feat: single transaction
I added a single transaction option for apply, upgrade, and
downgrade commands, which wraps all migrations into a single
transaction. This gives you the ability to safely roll up
migrations and, if some unforeseen situation occurs, roll them back.

Unfortunately if there is an error in syntax, mysql will not
rollback the migration and commits automatically :( I will
research this issue.

Closes #2
2021-04-24 01:58:19 +03:00
8f06b69f5d feat: apply multiply files
Closes #3
2021-04-09 01:09:51 +03:00
18bf265510 feat: add mysql database supporting 2021-03-26 02:10:41 +03:00
f4539f7877 feat: add command to upgrade command
... which adds the possibility to specify the number of
existing migrations to be updated
2021-02-25 00:56:08 +03:00
8aa57a00bc feat: add config to downgrade command
it's new flag --all that rollbacks all applied migrations
from database.
2021-02-25 00:20:44 +03:00
fef34be5ac feat: add number to downgrade command config 2021-02-25 00:03:54 +03:00
dbc7ddadb7 refac: made the error object simpler 2021-02-22 23:06:08 +03:00
e3c3879376 chore: add tests for upgrade command 2021-02-22 00:34:13 +03:00
afb1c8a4e3 chore: add test for make command 2021-02-21 23:57:13 +03:00
eda1a05d70 chore: change structure of integration tests 2021-02-21 18:51:10 +03:00
5dc240c851 style: format tests 2021-02-20 23:13:08 +03:00
51f631d900 chore: add tests for init command 2021-02-20 23:07:40 +03:00
e32a93442f chore: add integration tests for list command 2021-02-20 22:33:14 +03:00
429b33f8d7 fix: key in sample and test manifests 2021-02-13 23:47:41 +03:00
20a520b662 feat: tests for list command 2021-02-12 01:25:55 +03:00