[Fixed]-Rolling back to a previous migration in django

32👍

In order to rollback I had to do the following

  1. showmigrations to see where I am
  2. migrate 0003 (to go one step back)
  3. showmigrations to verify that it worked and I am one version behind
  4. migrate 0004 to migrate correctly

Leave a comment