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
databasechangeloglock table stores information that let us know whether a change set of migrations are running or not, that is to avoid race conditions if another dev tries to run migrations simultaneously.
When beginning any DB transaction, we should check if databasechangeloglock.locked column has a single value of true or false, and avoid any attempt of parallel migration runs.
Note: this is an example, I think this is somehow the behavior.
The text was updated successfully, but these errors were encountered:
databasechangeloglock
table stores information that let us know whether a change set of migrations are running or not, that is to avoid race conditions if another dev tries to run migrations simultaneously.When beginning any DB transaction, we should check if
databasechangeloglock.locked
column has a single value of true or false, and avoid any attempt of parallel migration runs.Note: this is an example, I think this is somehow the behavior.
The text was updated successfully, but these errors were encountered: