summaryrefslogtreecommitdiff
path: root/app/books
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2018-09-03 17:14:59 -0500
committerluxagraf <sng@luxagraf.net>2018-09-03 17:14:59 -0500
commita4c7c35944f8cfd174d84a7c25bd2ee447f9df3c (patch)
tree32465c27320132b9c9862f941a9c3cb56dd3a6a6 /app/books
parent0e35762e28c05db07e5b7bd19832c52cdef42d9b (diff)
added server side migrations
Diffstat (limited to 'app/books')
-rw-r--r--app/books/migrations/0006_book_amazon_url.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/app/books/migrations/0006_book_amazon_url.py b/app/books/migrations/0006_book_amazon_url.py
new file mode 100644
index 0000000..cc905d9
--- /dev/null
+++ b/app/books/migrations/0006_book_amazon_url.py
@@ -0,0 +1,18 @@
+# Generated by Django 2.0.1 on 2018-03-03 10:45
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('books', '0005_auto_20171214_2239'),
+ ]
+
+ operations = [
+ migrations.AddField(
+ model_name='book',
+ name='amazon_url',
+ field=models.CharField(blank=True, max_length=400, null=True),
+ ),
+ ]