It uses my own user and permissions model in Django, but the database consists of Django’s own models.
I use my own authorization model in Django, but when I migrate, auth_permissions occur in the database. Can I prevent this? What can I do to prevent it from occurring?
class Permission(models.Model):
add_product = models.BooleanField(default=False)
add_category = models.BooleanField(default=False)
4