Socialify

Folder ..

Viewing 0009_post_post_image.py
18 lines (13 loc) • 412.0 B

 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 2023-01-26 03:02

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ("blog", "0008_alter_post_date"),
    ]

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