Skip to content Skip to sidebar Skip to footer

Auto-generated Field 'user_ptr' Clashes With Declared Field Of The Same Name

I have a Django app that has CustomUser. My model looks something like class CustomUser(AbstractBaseUser): def get_short_name(self): pass def get_full_name(self):

Solution 1:

Delete your migrations . Then run makemigrations command.


Post a Comment for "Auto-generated Field 'user_ptr' Clashes With Declared Field Of The Same Name"