blob: e9d60887870fb46ea6f53007b9dacc1453cad606 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Generated by Django 3.1 on 2020-11-13 16:14
from django.db import migrations, models
import posts.models
class Migration(migrations.Migration):
dependencies = [
('posts', '0014_auto_20201113_1444'),
]
operations = [
migrations.AddField(
model_name='post',
name='old_image',
field=models.FileField(blank=True, help_text='should be 520 by 290', null=True, upload_to=posts.models.get_upload_path),
),
]
|