...

/

Run Migrations Outside of a Transaction

Run Migrations Outside of a Transaction

Learn how to run a migration outside of a transaction environment.

Disable transactional behavior

By default, migrations are run within a database transaction. This is a good thing. If any part of our migration has an error, we can be assured that the database will be restored back to the ...