Skip to content

Commit

Permalink
fix: certification code 모델 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Euizzang8001 committed Jul 31, 2024
1 parent 743ba2b commit 84c5336
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions KUA/student/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@ class CertificationCode(models.Model):
email = models.CharField(max_length = 30, null = False, blank=False)
certification_code = models.CharField(default='', max_length = 8, null = False, blank = False)
certification_check = models.BooleanField(default=False)
USERNAME_FIELD = 'email'
REQUIRED_FIELDS = ['certification_code']

def __str__(self):
return self.email
Expand Down

0 comments on commit 84c5336

Please sign in to comment.