Table of Contents

Django

Reset migrations

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

Remove app from project

Source: http://techstream.org/Bits/Remove-App-From-Django-Project

Nginx reload

sudo nginx -s reload

ORM

Subqueries

Count

# 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))