I want to be able to not run a Django 1.8
migration.
I have seen people use the --fake
option, but it's not a valid alternative for me, since it writes a new record on the django migrations database table. I dont like this, because I want to be able to run that migration on a later moment, and that wouldn't happen since django thinks it has been already done.
Is there any other way of avoiding to run a migration?