* fix: Expand and enforce Cancel Interim Meeting Request comments length to 512 (#6998) * fix: Verify comment text in generated email
19 lines
409 B
Python
19 lines
409 B
Python
# Copyright The IETF Trust 2024, All Rights Reserved
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("meeting", "0004_session_chat_room"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="session",
|
|
name="agenda_note",
|
|
field=models.CharField(blank=True, max_length=512),
|
|
),
|
|
]
|