2022-02-23 07:33:55 +01:00
|
|
|
from django.db import migrations, models
|
|
|
|
from django.db.models.functions import Upper
|
2017-10-24 01:52:02 +02:00
|
|
|
|
2020-01-14 21:59:46 +01:00
|
|
|
|
2017-10-24 01:52:02 +02:00
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
2021-02-12 08:20:45 +01:00
|
|
|
("zerver", "0111_botuserstatedata"),
|
2017-10-24 01:52:02 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
operations = [
|
2022-02-23 07:33:55 +01:00
|
|
|
migrations.AddIndex(
|
|
|
|
model_name="mutedtopic",
|
|
|
|
index=models.Index(
|
|
|
|
"stream", Upper("topic_name"), name="zerver_mutedtopic_stream_topic"
|
|
|
|
),
|
2017-10-24 01:52:02 +02:00
|
|
|
),
|
|
|
|
]
|