update
Some checks failed
Build And Test / build-and-push (push) Failing after 1m46s

This commit is contained in:
2026-01-13 22:41:07 +09:00
parent e4b185332b
commit 00db74a333
6 changed files with 152 additions and 9 deletions

View File

@ -51,7 +51,7 @@ class CustomUser(AbstractBaseUser, PermissionsMixin):
)
email = models.EmailField(unique=True)
name = models.CharField(max_length=255)
name = models.CharField(max_length=255, unique=True)
grade = models.CharField(max_length=20, choices=GRADE_CHOICES, default='user')
desc = models.TextField(blank=True, null=True, verbose_name="설명")