They are files saved in migrations directory.
They are created when you run makemigrations command.
Migrations are files where Django stores changes to your models.
All of the above
manage.py inspect
manage.py legacydb
manage.py inspectdb
None of the above
result = list(query_set_1 | query_set_2)
from itertools import chain result = list(chain(query_set_1, query_set_2))
from django.db.models import Q result = Q(query_set_1) | Q(query_set_1)
result = query_set_1 + query_set_2
Admin Interface (CRUD)
Templating
Form handling
User.objects.all()
Users.objects.all()
User.all_records()
User.object.all()