from the ORM:
Reporter.objects.all().delete()
management command:
python manage.py flush
python manage.py shell
>> from {app_name}.models import {model_name}
>> {model_name}.objects.all().delete()
record = Question.objects.get(id = 1)
record.delete()
from the ORM:
Reporter.objects.all().delete()
management command:
python manage.py flush