Skip to content

Commit

Permalink
Add chapter_event field to ticket.
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabrimari committed Dec 12, 2024
1 parent 453eea2 commit c2b9f2d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions backend/bittan/bittan/models/ticket.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ class Ticket(models.Model):
payment = models.ForeignKey('Payment', on_delete=models.DO_NOTHING)
ticket_type = models.ForeignKey('TicketType', on_delete=models.DO_NOTHING)
times_used = models.IntegerField(default=0)
chapter_event = models.ForeignKey("ChapterEvent", on_delete=models.DO_NOTHING)

0 comments on commit c2b9f2d

Please sign in to comment.