21 lines
495 B
Python
21 lines
495 B
Python
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("pages", "0011_custompagesectionitem_page_aboutsectionitem_url"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="aboutsectionitem",
|
|
name="icon",
|
|
field=models.CharField(
|
|
blank=True,
|
|
help_text="Emoji or short symbol (e.g. ⚗️).",
|
|
max_length=20,
|
|
),
|
|
),
|
|
]
|