From 920a9180c84db5d6aec8776682eb19ad3edb9692 Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Mon, 17 Nov 2025 21:44:19 -0500 Subject: [PATCH] [books] Remove unused max_length parameter --- vrobbler/apps/books/models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vrobbler/apps/books/models.py b/vrobbler/apps/books/models.py index 6fd4b27..64cc4a2 100644 --- a/vrobbler/apps/books/models.py +++ b/vrobbler/apps/books/models.py @@ -153,8 +153,8 @@ class Book(LongPlayScrobblableMixin): comicvine_id = models.CharField(max_length=255, **BNULL) readcomics_url = models.CharField(max_length=255, **BNULL) next_readcomics_url = models.CharField(max_length=255, **BNULL) - issue_number = models.IntegerField(max_length=5, **BNULL) - volume_number = models.IntegerField(max_length=5, **BNULL) + issue_number = models.IntegerField(**BNULL) + volume_number = models.IntegerField(**BNULL) # OpenLibrary openlibrary_id = models.CharField(max_length=255, **BNULL) cover = models.ImageField(upload_to="books/covers/", **BNULL)