made the blurb TextField longer

parent 5c5c0655
...@@ -22,7 +22,7 @@ class Book(models.Model): ...@@ -22,7 +22,7 @@ class Book(models.Model):
publisher = models.CharField(max_length = 50) publisher = models.CharField(max_length = 50)
year_published = models.DateField(auto_now_add=True) year_published = models.DateField(auto_now_add=True)
ISBN = models.BigIntegerField(default = 0) ISBN = models.BigIntegerField(default = 0)
blurb = models.TextField(max_length = 800) blurb = models.TextField(max_length = 1000)
def __str__(self): def __str__(self):
return self.title return self.title
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment