From 325624dbe69fc1af47cfeddf082db4c6ec13109d Mon Sep 17 00:00:00 2001 From: Andrea Crotti Date: Thu, 26 Sep 2019 17:03:06 +0100 Subject: [PATCH] Clarify that it simply uses SQL to define migrations Closes #94 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d2d0293..02040f3 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ For a comparison between dbmate and other popular database schema migration tool ## Features * 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 run atomically inside a transaction. * Supports creating and dropping databases (handy in development/test).