I know partial inheriting it is not possible. I need to create a user model for my Django apps, for that I want to use the User class defined in Django. But I do not need the username field, which is set as required.
Suppose I inherit from User to MyUser. Is it possible to delete the username attribute in MyUser. i.e. del MyUser.username? Or can someone suggest other way to do this?
usernamefield . Or u have to modifyauthmodule .