mirror of
https://github.com/zulip/zulip.git
synced 2025-11-02 04:53:36 +00:00
messages: Add an is_channel_message flag.
This commit is contained in:
committed by
Tim Abbott
parent
e365ac6d11
commit
47d55c4b6f
20
zerver/migrations/0690_message_is_channel_message.py
Normal file
20
zerver/migrations/0690_message_is_channel_message.py
Normal file
@@ -0,0 +1,20 @@
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
dependencies = [
|
||||
("zerver", "0689_mark_navigation_tour_video_as_read"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name="archivedmessage",
|
||||
name="is_channel_message",
|
||||
field=models.BooleanField(db_index=True, default=True, null=True),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name="message",
|
||||
name="is_channel_message",
|
||||
field=models.BooleanField(db_index=True, default=True, null=True),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user