Skip to content
This repository has been archived by the owner on Jan 3, 2024. It is now read-only.

Commit

Permalink
fix(apps/users): remove useless fields from users model
Browse files Browse the repository at this point in the history
  • Loading branch information
bitterteriyaki committed Nov 27, 2023
1 parent 9dbb1c6 commit e7a59a2
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions apps/users/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@ class User(AbstractBaseUser, PermissionsMixin, TimestampedModel):

email = EmailField(db_index=True, max_length=256, unique=True)
username = CharField(db_index=True, max_length=128, unique=True)
score = 0
contest = 0

# When a user no longer wishes to use our platform, they may try to
# delete there account. That's a problem for us because the data we
Expand Down

0 comments on commit e7a59a2

Please sign in to comment.