问题
Is it possible to use Django 1.7 migrations to completely remove/uninstall an app and all its traces (mainly, all its database tables)?
If not, what is the appropriate way of doing this in Django 1.7?
回答1:
python manage.py migrate <app> zero
来源:https://stackoverflow.com/questions/31892027/remove-app-and-associated-database-tables-in-django-1-7