mirror of
https://github.com/zulip/zulip.git
synced 2025-11-03 13:33:24 +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
536 B
Python
21 lines
536 B
Python
# -*- coding: utf-8 -*-
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('zerver', '0094_realm_filter_url_validator'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RunSQL(
|
|
'''
|
|
CREATE INDEX IF NOT EXISTS zerver_usermessage_unread_message_id
|
|
ON zerver_usermessage (user_profile_id, message_id)
|
|
WHERE (flags & 1) = 0;
|
|
''',
|
|
reverse_sql='DROP INDEX zerver_usermessage_unread_message_id;'
|
|
),
|
|
]
|