FAQ: Add one more question

This commit is contained in:
Marcin K 2019-08-07 01:07:29 +02:00
parent 74b9fdb3cb
commit d7e0e40e0a
1 changed files with 3 additions and 0 deletions

3
FAQ.md
View File

@ -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.