datatracker/ietf/meeting/migrations/0004_session_chat_room.py
Paul Selkirk 65bd689daa
fix: make chat room an overrideable property of Session (#5681)
* fix: make chat room an overrideable property of Session

* test: validate that /meeting/session/<sessionid>/edit shows and sets chat room

* test: validate Session.chat_room_name
2023-05-24 10:26:19 -05:00

19 lines
486 B
Python

# Copyright The IETF Trust 2023, All Rights Reserved
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('meeting', '0003_populate_session_has_onsite_tool'),
]
operations = [
migrations.AddField(
model_name='session',
name='chat_room',
field=models.CharField(blank=True, help_text='Name of Zulip stream, if different from group acronym', max_length=32),
),
]