mirror of
https://github.com/zulip/zulip.git
synced 2025-10-28 18:43:52 +00:00
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>
28 lines
899 B
Python
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'),
|
|
]
|