Clarify that it simply uses SQL to define migrations

Closes #94
This commit is contained in:
Andrea Crotti 2019-09-26 17:03:06 +01:00 committed by Adrian Macneil
parent e5ade066a2
commit 325624dbe6

View file

@ -13,7 +13,7 @@ For a comparison between dbmate and other popular database schema migration tool
## Features ## Features
* Supports MySQL, PostgreSQL, and SQLite. * Supports MySQL, PostgreSQL, and SQLite.
* Powerful, [purpose-built DSL](https://en.wikipedia.org/wiki/SQL#Data_definition) for writing schema migrations. * Uses plain SQL for writing schema migrations.
* Migrations are timestamp-versioned, to avoid version number conflicts with multiple developers. * Migrations are timestamp-versioned, to avoid version number conflicts with multiple developers.
* Migrations are run atomically inside a transaction. * Migrations are run atomically inside a transaction.
* Supports creating and dropping databases (handy in development/test). * Supports creating and dropping databases (handy in development/test).