page file name is not long enough. extended to 200.

This commit is contained in:
ajurna@gmail.com
2016-04-14 13:36:02 +01:00
parent a2f3e76bb2
commit 586f4ad438
2 changed files with 20 additions and 1 deletions

View File

@@ -311,7 +311,7 @@ class ComicBook(models.Model):
class ComicPage(models.Model):
Comic = models.ForeignKey(ComicBook, on_delete=models.CASCADE)
index = models.IntegerField()
page_file_name = models.CharField(max_length=100, unique=False)
page_file_name = models.CharField(max_length=200, unique=False)
content_type = models.CharField(max_length=30)