From d7e0e40e0aebc11adfc70312d09ce43313718a28 Mon Sep 17 00:00:00 2001 From: Marcin K Date: Wed, 7 Aug 2019 01:07:29 +0200 Subject: [PATCH] FAQ: Add one more question --- FAQ.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/FAQ.md b/FAQ.md index 1142f59..9be2899 100644 --- a/FAQ.md +++ b/FAQ.md @@ -68,3 +68,6 @@ Database-specific locking features are used by *some* database drivers to prevent multiple instances of migrate from running migrations at the same time the same database at the same time. For example, the MySQL driver uses the `GET_LOCK` function, while the Postgres driver uses the `pg_advisory_lock` function. + +#### Do I need to create a table for tracking migration version used? +No, it is done automatically. This information will be kept in the table `schema_migrations` in the database that you have configured. \ No newline at end of file