Skip to content

Commit e41be46

Browse files
committed
Adjust for django_three_two
1 parent ffe1bf7 commit e41be46

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

models.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -535,7 +535,10 @@ class KeywordBook(models.Model):
535535
"submission.Keyword",
536536
on_delete=models.CASCADE,
537537
)
538-
book = models.ForeignKey("books.Book")
538+
book = models.ForeignKey(
539+
"books.Book",
540+
on_delete=models.CASCADE,
541+
)
539542
order = models.PositiveIntegerField(default=1)
540543

541544
class Meta:

0 commit comments

Comments
 (0)