Skip to content

Commit

Permalink
Update src/objecttypes/token/models.py
Browse files Browse the repository at this point in the history
Co-authored-by: Joeri Bekker <[email protected]>
  • Loading branch information
annashamray and joeribekker authored May 2, 2024
1 parent 8e3810b commit 791c975
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/objecttypes/token/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@


class TokenAuth(models.Model):
token = models.CharField(_("token"), max_length=40, db_index=True)
token = models.CharField(_("token"), max_length=40, unique=True)
contact_person = models.CharField(
_("contact person"),
max_length=200,
Expand Down

0 comments on commit 791c975

Please sign in to comment.