You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: FAQ.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -68,3 +68,6 @@
68
68
Database-specific locking features are used by *some* database drivers to prevent multiple instances of migrate from running migrations at the same time
69
69
the same database at the same time. For example, the MySQL driver uses the `GET_LOCK` function, while the Postgres driver uses
70
70
the `pg_advisory_lock` function.
71
+
72
+
#### Do I need to create a table for tracking migration version used?
73
+
No, it is done automatically. This information will be kept in the table `schema_migrations` in the database that you have configured.
0 commit comments