mirror of
https://github.com/zulip/zulip.git
synced 2025-11-03 21:43:21 +00:00
This is a preparatory commit for using isort for sorting all of our imports, merging changes to files where we can easily review the changes as something we're happy with. These are also files with relatively little active development, which means we don't expect much merge conflict risk from these changes.
21 lines
589 B
Python
21 lines
589 B
Python
# -*- coding: utf-8 -*-
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('zerver', '0098_index_has_alert_word_user_messages'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RunSQL(
|
|
'''
|
|
CREATE INDEX IF NOT EXISTS zerver_usermessage_wildcard_mentioned_message_id
|
|
ON zerver_usermessage (user_profile_id, message_id)
|
|
WHERE (flags & 8) != 0 OR (flags & 16) != 0;
|
|
''',
|
|
reverse_sql='DROP INDEX zerver_usermessage_wilcard_mentioned_message_id;'
|
|
),
|
|
]
|