mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 04:52:12 +00:00
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>
29 lines
880 B
Python
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"),
|
|
),
|
|
]
|