diff options
author | luxagraf <sng@luxagraf.net> | 2018-09-03 17:14:59 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2018-09-03 17:14:59 -0500 |
commit | a4c7c35944f8cfd174d84a7c25bd2ee447f9df3c (patch) | |
tree | 32465c27320132b9c9862f941a9c3cb56dd3a6a6 /app/books | |
parent | 0e35762e28c05db07e5b7bd19832c52cdef42d9b (diff) |
added server side migrations
Diffstat (limited to 'app/books')
-rw-r--r-- | app/books/migrations/0006_book_amazon_url.py | 18 |
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), + ), + ] |