34 lines
1.3 KiB
Python
34 lines
1.3 KiB
Python
# Generated by Django 5.2.13 on 2026-06-08 13:14
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('pages', '0016_video_styled_background'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='aboutsection',
|
|
name='description_format',
|
|
field=models.CharField(choices=[('plain', 'Plain Text'), ('markdown', 'Markdown'), ('html', 'HTML')], default='plain', max_length=20),
|
|
),
|
|
migrations.AddField(
|
|
model_name='custompagesection',
|
|
name='description_format',
|
|
field=models.CharField(choices=[('plain', 'Plain Text'), ('markdown', 'Markdown'), ('html', 'HTML')], default='plain', max_length=20),
|
|
),
|
|
migrations.AddField(
|
|
model_name='homepagesection',
|
|
name='description_format',
|
|
field=models.CharField(choices=[('plain', 'Plain Text'), ('markdown', 'Markdown'), ('html', 'HTML')], default='plain', max_length=20),
|
|
),
|
|
migrations.AddField(
|
|
model_name='pagevideo',
|
|
name='description_format',
|
|
field=models.CharField(choices=[('plain', 'Plain Text'), ('markdown', 'Markdown'), ('html', 'HTML')], default='plain', max_length=20),
|
|
),
|
|
]
|