From 34df0f81d9a4480eb33c77a22879218e35fa0b49 Mon Sep 17 00:00:00 2001 From: luxagraf Date: Mon, 8 Feb 2016 10:44:16 -0500 Subject: added an is_public field so I can keep some of the scifi and pulp out of the public performance part of the site should I decided to do that. --- app/books/models.py | 1 + 1 file changed, 1 insertion(+) (limited to 'app/books/models.py') diff --git a/app/books/models.py b/app/books/models.py index 64d9a3d..4359a3e 100644 --- a/app/books/models.py +++ b/app/books/models.py @@ -30,6 +30,7 @@ class Book(models.Model): ) rating = models.CharField(max_length=1, choices=RATINGS, null=True, blank=True) enable_comments = models.BooleanField(default=False) + is_public = models.BooleanField(default=True) image = models.FileField(upload_to="%s/%s" % (settings.IMAGES_ROOT, 'book-covers/'), null=True, blank=True) class Meta: -- cgit v1.2.3-70-g09d2