Skip to content

Commit f2b2c40

Browse files
committed
Edit ticket type model
1 parent 7362135 commit f2b2c40

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ticket/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class TicketType(models.Model):
2525
("WEEKEND", "토/일요일"),
2626
),
2727
)
28-
program = models.ForeignKey("program.Program", on_delete=models.PROTECT, null=True)
28+
program = models.ForeignKey("program.Program", on_delete=models.PROTECT, null=True, blank=True)
2929
is_refundable = models.BooleanField(default=True)
3030

3131
def __str__(self):

0 commit comments

Comments
 (0)