I've disabled authentication for Django admin panel as described here.
I would like to go further and completely skip django.contrib.auth
migrations like users or groups tables.
I've tried to remove django.contrib.auth
from INSTALLED_APP
and then I got error like below:
RuntimeError: Model class django.contrib.auth.models.Permission doesn't declare an explicit app_label and isn't in an application in INSTALLED_APPS.
Is there any way to use Django admin panel without migrating django.contrib.auth
migrations?