19 lines
435 B
Python
19 lines
435 B
Python
# Generated by Django 4.2.7 on 2025-10-10 05:17
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('mindmap', '0003_node_image_fit_node_image_height_node_image_url_and_more'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='node',
|
|
name='html_content',
|
|
field=models.TextField(blank=True, default=''),
|
|
),
|
|
]
|