Skip to content

Commit

Permalink
Update core/models/organizerissue.py
Browse files Browse the repository at this point in the history
Co-authored-by: Mark Walker <theshow@gmail.com>
  • Loading branch information
amakarudze and marksweb authored Feb 1, 2024
1 parent b11866b commit 1db986f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/models/organizerissue.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

class OrganizerIssue(models.Model):
created_at = models.DateTimeField(auto_now_add=True)
organizer = models.ForeignKey(User, related_name="oganizer", on_delete=models.deletion.CASCADE)
organizer = models.ForeignKey(User, related_name="organizer", on_delete=models.deletion.CASCADE)
event = models.ForeignKey(to=Event, null=True, blank=True, related_name="event", on_delete=models.deletion.SET_NULL)
date_reported = models.DateField()
reported_by = models.CharField(max_length=100)
Expand Down

0 comments on commit 1db986f

Please sign in to comment.