diff options
author | luxagraf <sng@luxagraf.net> | 2017-12-14 19:58:07 -0800 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2017-12-14 19:58:07 -0800 |
commit | c903be495237125906e95e2d5fcb9f17df09327c (patch) | |
tree | 27173dad151e2c09105bd1c1b64f9d04210f8d8e /app/books/migrations | |
parent | 83b7318a4672d32ed77cd3f906f43f5ad1cce854 (diff) |
cleaned up notes, archived old apps, moved checkins to locations app
where it should have been from the beginning
Diffstat (limited to 'app/books/migrations')
-rw-r--r-- | app/books/migrations/0005_auto_20171214_2239.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/app/books/migrations/0005_auto_20171214_2239.py b/app/books/migrations/0005_auto_20171214_2239.py new file mode 100644 index 0000000..175cc73 --- /dev/null +++ b/app/books/migrations/0005_auto_20171214_2239.py @@ -0,0 +1,21 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.5 on 2017-12-14 22:39 +from __future__ import unicode_literals + +import books.models +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('books', '0004_auto_20161219_1058'), + ] + + operations = [ + migrations.AlterField( + model_name='book', + name='image', + field=models.FileField(blank=True, null=True, upload_to=books.models.get_upload_path), + ), + ] |