Files
zulip/zerver/migrations/0245_message_date_sent_finalize_part1.py
Anders Kaseorg 2cd018ce57 models: Remove duplicate index definition for date_sent.
Commit cf0eb46afc added this to let
Django understand the CREATE INDEX CONCURRENTLY statement that had
been hidden in a RunSQL query in migration 0244.  However, migration
0245 explained that same index to Django in a different way by setting
db_index=True.  Move that to 0244 where the index is actually created,
using SeparateDatabaseAndState.

Also remove the part of the SQL in 0245 that was mirrored by dummy
state_operations, and replace it with real operations.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
2023-09-07 16:44:43 -07:00

29 lines
880 B
Python

# Generated by Django 1.11.23 on 2019-08-23 21:03
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("zerver", "0244_message_copy_pub_date_to_date_sent"),
]
operations = [
migrations.RunSQL(
"""
DROP TRIGGER zerver_message_date_sent_to_pub_date_trigger ON zerver_message;
DROP FUNCTION zerver_message_date_sent_to_pub_date_trigger_function();
"""
),
migrations.AlterField(
model_name="message",
name="date_sent",
field=models.DateTimeField(db_index=True, verbose_name="date sent"),
),
migrations.AlterField(
model_name="message",
name="pub_date",
field=models.DateTimeField(db_index=True, null=True, verbose_name="date published"),
),
]