aboutsummaryrefslogtreecommitdiff
path: root/blog/migrations/0005_alter_post_post_image.py
blob: 6e58db75408572a023737a031554e2d2a49a8b00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Generated by Django 4.1.4 on 2022-12-31 17:13

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ("blog", "0004_alter_post_post_image"),
    ]

    operations = [
        migrations.AlterField(
            model_name="post",
            name="post_image",
            field=models.ImageField(blank=True, upload_to="images/post-covers"),
        ),
    ]