Files
zulip/zerver/migrations/0256_userprofile_stream_set_recipient_column_values.py
Anders Kaseorg c734bbd95d python: Modernize legacy Python 2 syntax with pyupgrade.
Generated by `pyupgrade --py3-plus --keep-percent-format` on all our
Python code except `zthumbor` and `zulip-ec2-configure-interfaces`,
followed by manual indentation fixes.

Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-09 16:43:22 -07:00

28 lines
899 B
Python

from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('zerver', '0255_userprofile_stream_add_recipient_column'),
]
operations = [
migrations.RunSQL(
"""
UPDATE zerver_userprofile
SET recipient_id = zerver_recipient.id
FROM zerver_recipient
WHERE zerver_recipient.type_id = zerver_userprofile.id AND zerver_recipient.type = 1;
""",
reverse_sql='UPDATE zerver_userprofile SET recipient_id = NULL'),
migrations.RunSQL(
"""
UPDATE zerver_stream
SET recipient_id = zerver_recipient.id
FROM zerver_recipient
WHERE zerver_recipient.type_id = zerver_stream.id AND zerver_recipient.type = 2;
""",
reverse_sql='UPDATE zerver_stream SET recipient_id = NULL'),
]