blob: 1b3a952cedb20fe0a941c5ff77e1efb891138796 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# -*- coding: utf-8 -*-
# Generated by Django 1.9 on 2016-12-19 10:58
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('books', '0003_auto_20161023_2014'),
]
operations = [
migrations.AlterField(
model_name='book',
name='image',
field=models.FileField(blank=True, null=True, upload_to='/home/lxf/apps/luxagraf/site/media/images/book-covers/'),
),
]
|