Fix first sentence length

This commit is contained in:
2023-08-18 22:48:02 -04:00
parent 607c2522f3
commit 145212fe46
2 changed files with 31 additions and 1 deletions

View File

@ -77,7 +77,7 @@ class Book(LongPlayScrobblableMixin):
pages = models.IntegerField(**BNULL)
language = models.CharField(max_length=4, **BNULL)
first_publish_year = models.IntegerField(**BNULL)
first_sentence = models.CharField(max_length=255, **BNULL)
first_sentence = models.TextField(**BNULL)
openlibrary_id = models.CharField(max_length=255, **BNULL)
cover = models.ImageField(upload_to="books/covers/", **BNULL)