blob: 809f562c6f0ab46889a82d0d35864ed5d083241b (
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-07-07 09:58
from django.db import migrations, models
import jrnl.models
class Migration(migrations.Migration):
dependencies = [
('jrnl', '0021_auto_20180606_1058'),
]
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),
),
]
|