Rollback is used elsewhere in the tutorial

This commit is contained in:
Jason Noble 2011-12-03 19:03:26 -07:00
parent 78f6672a43
commit c8f8ecfd38

@ -129,7 +129,7 @@ existing records (if necessary using your models).
On databases that support transactions with statements that change the schema
(such as PostgreSQL or SQLite3), migrations are wrapped in a transaction. If the
database does not support this (for example MySQL) then when a migration fails
the parts of it that succeeded will not be rolled back. You will have to unpick
the parts of it that succeeded will not be rolled back. You will have to rollback
the changes that were made by hand.
h4. What's in a Name