blob: 7575d4f128df9ecf5d43b5f0b975c93b5a37279a (
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', '0019_remove_entry_thumbnail'),
]
operations = [
migrations.AlterField(
model_name='entry',
name='image',
field=models.FileField(blank=True, help_text='should be 520 by 290', upload_to=jrnl.models.get_upload_path),
),
]
|