mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 16:14:02 +00:00
24 lines
599 B
Python
24 lines
599 B
Python
# Generated by Django 5.0.6 on 2024-05-08 01:16
|
|
|
|
from django.contrib.postgres.operations import AddIndexConcurrently
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
atomic = False
|
|
|
|
dependencies = [
|
|
("zerver", "0519_archivetransaction_restored_timestamp"),
|
|
]
|
|
|
|
operations = [
|
|
AddIndexConcurrently(
|
|
model_name="attachment",
|
|
index=models.Index(
|
|
models.F("realm"),
|
|
models.F("create_time"),
|
|
name="zerver_attachment_realm_create_time",
|
|
),
|
|
),
|
|
]
|