fix: issue vote constraints (#2057)

This commit is contained in:
Nikhil 2023-09-01 18:46:38 +05:30 committed by GitHub
parent f71a62f142
commit 71c8f79276
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 9 deletions

View file

@ -481,7 +481,7 @@ class IssueVote(ProjectBaseModel):
)
class Meta:
unique_together = ["issue", "actor", "vote"]
unique_together = ["issue", "actor",]
verbose_name = "Issue Vote"
verbose_name_plural = "Issue Votes"
db_table = "issue_votes"