20 lines
387 B
Python
20 lines
387 B
Python
# Generated by Django 5.2.4 on 2025-07-26 15:26
|
|
|
|
import mdeditor.fields
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('blog', '0003_post_image'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='post',
|
|
name='content',
|
|
field=mdeditor.fields.MDTextField(),
|
|
),
|
|
]
|