Update FAQ.md - typo

This commit is contained in:
Bryan Stenson
2025-02-01 23:26:02 -08:00
committed by GitHub
parent d477553dcd
commit a8680333c3
+1 -1
View File
@@ -65,7 +65,7 @@
and then "force" the expected version.
#### What happens if two programs try and update the database at the same time?
Database-specific locking features are used by *some* database drivers to prevent multiple instances of migrate from running migrations at the same time
Database-specific locking features are used by *some* database drivers to prevent multiple instances of migrate from running migrations on
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.