paltman-archive / nashvegas

Another database migration script runner for Django projects.
http://paltman.github.com/nashvegas
MIT License
97 stars 18 forks source link

Missing rollback feature #25

Closed marcinn closed 13 years ago

marcinn commented 13 years ago

There is no way to rollback database schema. Sometimes you want step back to fix change set.

peterbe commented 13 years ago

Then you should perhaps look to use South instead. Rollbacks are complex but you could always just create a new migration that does the actual rollback for you. E.g. ALTER TABLE DROP new_column

paltman commented 13 years ago

I agree with peterbe, if you need rollbacks you should consider South. We do not plan on supporting rollbacks in nashvegas.