19 lines
412 B
Python
19 lines
412 B
Python
# Generated by Django 5.2.4 on 2025-07-26 13:33
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('blog', '0002_post_publish_date'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='post',
|
|
name='image',
|
|
field=models.ImageField(blank=True, null=True, upload_to='post_images/'),
|
|
),
|
|
]
|