I want to remove all data from all models defined in a single Django app. The number of models might change in the app, hence I don't want to hard code model names. It would be great if it might be done using manage.py
command, however I was not able to find one.
The manage.py flush
command is not suitable, because it only allows to clear data from all apps.