How to revert the last migration?

You can revert by migrating to the previous migration. For example, if your last two migrations are: 0010_previous_migration 0011_migration_to_revert Then you would do: You don’t actually need to use the full migration name, the number is enough, i.e. You can then delete migration 0011_migration_to_revert. If you’re using Django 1.8+, you can show the names of all the … Read more