Add migration files for model updates

parent 3ab3aba1
# Generated by Django 3.2.12 on 2022-05-25 12:50
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('forum', '0004_rename_post_title_reply_post'),
]
operations = [
migrations.AddField(
model_name='post',
name='image',
field=models.FileField(blank=True, null=True, upload_to='static/forum/'),
),
]
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment