blob: 175cc7386f43b464ef006f295ec1af81baa1ff55 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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),
),
]
|