| 13 | |
| 14 | |
| 15 | class CustomEmailField(AbstractBaseUser): |
| 16 | username = models.CharField(max_length=255) |
| 17 | password = models.CharField(max_length=255) |
| 18 | email_address = models.EmailField(null=True) |
| 19 | is_active = models.BooleanField(default=True) |
| 20 | |
| 21 | EMAIL_FIELD = "email_address" |
| 22 | USERNAME_FIELD = "username" |
| 23 | |
| 24 | objects = CustomEmailFieldUserManager() |