Hi I am trying to create a superuser, however, after I added my own ProfileManager I get the error:
AttributeError: 'ProfileManager' object has no attribute 'create_superuser'
But my issue is should BaseUserManager already have this method? I cannot find a why to inherit the create_superuser method.
My manager is:
class ProfileManager(BaseUserManager):
pass
And my model is:
class Profile(AbstractUser):
objects = ProfileManager()
Thanks for all the help in advance!