Files
zulip/zerver/migrations/0414_remove_userstatus_status.py
Lauryn Menard 4793f017f9 user-status: Delete status field from UserStatus model.
We are no longer writing to or reading the UserStatus.status field,
so we delete that from the model.

Fifth step in making user status `away` a deprecated way to access
`presence_enabled` for clients supporting older servers.

Part of transitioning from 'unavailable' user status feature to
'invisible mode' user presence feature.
2022-09-23 12:27:54 -07:00

18 lines
360 B
Python

# Generated by Django 4.0.7 on 2022-09-22 12:12
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
("zerver", "0413_set_presence_enabled_false_for_user_status_away"),
]
operations = [
migrations.RemoveField(
model_name="userstatus",
name="status",
),
]