summaryrefslogtreecommitdiff
path: root/app/books
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2018-03-03 09:43:25 -0600
committerluxagraf <sng@luxagraf.net>2018-03-03 09:43:25 -0600
commit875e1a8c87ea0825653684068810987c78c94857 (patch)
tree06f60f99527e29c7f00637602291e886f8bed6ce /app/books
parent02fc7f78530488b676db76faa74b8d5c99e72592 (diff)
added amazon url to books section. probably won't use it though.
Diffstat (limited to 'app/books')
-rw-r--r--app/books/models.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/app/books/models.py b/app/books/models.py
index ebd3a2a..c3c15f4 100644
--- a/app/books/models.py
+++ b/app/books/models.py
@@ -25,6 +25,7 @@ class Book(models.Model):
publish_date = models.CharField(max_length=40, blank=True, null=True)
publish_place = models.CharField(max_length=100, blank=True, null=True)
openlib_url = models.CharField(max_length=400, blank=True, null=True)
+ amazon_url = models.CharField(max_length=400, blank=True, null=True)
RATINGS = (
('1', "1 Star"),
('2', "2 Stars"),