Files
zulip/zerver/migrations/0546_rename_huddle_directmessagegroup_and_more.py
roanster007 02d0566dc5 refactor: Rename Huddle Django model class to DirectMessageGroup.
This commit renames the "Huddle" Django model class to
"DirectMessageGroup", while maintaining the same table --
"zerver_huddle".

Fixes part of #28640.
2024-07-07 21:31:30 -07:00

20 lines
549 B
Python

# Generated by Django 5.0.6 on 2024-07-05 10:44
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
("zerver", "0545_attachment_content_type"),
]
operations = [
migrations.SeparateDatabaseAndState(
database_operations=[],
state_operations=[
migrations.RenameModel(old_name="Huddle", new_name="DirectMessageGroup"),
migrations.AlterModelTable(name="directmessagegroup", table="zerver_huddle"),
],
)
]