blob: f9a3fc8e4c13d47411e7709e358067961912573f (
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.9 on 2016-12-19 10:58
from __future__ import unicode_literals
from django.db import migrations, models
import jrnl.models
class Migration(migrations.Migration):
dependencies = [
('jrnl', '0015_entry_has_video'),
]
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),
),
]
|