blob: ab422906c6291fbc31e2b97a4ea9322f7d64c6d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Generated by Django 2.0.1 on 2018-06-06 10:58
from django.db import migrations, models
import jrnl.models
class Migration(migrations.Migration):
dependencies = [
('jrnl', '0020_auto_20180606_1058'),
]
operations = [
migrations.AlterField(
model_name='entry',
name='image',
field=models.FileField(blank=True, help_text='should be 520 by 290', null=True, upload_to=jrnl.models.get_upload_path),
),
]
|