[Django]-Django Forcing BigAutoField even though Default is set to AutoField

6👍

Well, I figured it out. For some reason the BigAutoField was set in the apps.py file in the app

from django.apps import AppConfig


class DeviceConfig(AppConfig):
    default_auto_field = 'django.db.models.BigAutoField'
    name = 'device'

Leave a comment