diff options
author | luxagraf <sng@luxagraf.net> | 2018-03-03 09:43:25 -0600 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2018-03-03 09:43:25 -0600 |
commit | 875e1a8c87ea0825653684068810987c78c94857 (patch) | |
tree | 06f60f99527e29c7f00637602291e886f8bed6ce /app/books | |
parent | 02fc7f78530488b676db76faa74b8d5c99e72592 (diff) |
added amazon url to books section. probably won't use it though.
Diffstat (limited to 'app/books')
-rw-r--r-- | app/books/models.py | 1 |
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"), |