Source: https://simpleisbetterthancomplex.com/tutorial/2016/07/26/how-to-reset-migrations.html
1. Remove all migrations
find . -path "*/migrations/*.py" -not -name "__init__.py" -delete find . -path "*/migrations/*.pyc" -delete
2. Delete and recreate database
3. Make migrations and migrate
./manage.py makemigrations ./manage.py migrate
Source: http://techstream.org/Bits/Remove-App-From-Django-Project
sudo nginx -s reload
# database optimization subquery = Subquery( Job.objects.published().filter(school=OuterRef('pk')) .values('school').annotate(count=Count('pk')) .values('count'), output_field=IntegerField() ) qs = qs.annotate(jobs_count=Coalesce(subquery, 0))