presence: Rewrite the backend data model - final migration.

This commit is contained in:
Mateusz Mandera 2023-02-23 20:23:34 +01:00 committed by Tim Abbott
parent 027b67be80
commit ed91e72c5c
1 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
from django.db import migrations
class Migration(migrations.Migration):
"""
Finalizes the migration to the new UserPresence model.
We can get rid of the old table together with its data.
"""
dependencies = [
("zerver", "0444_userpresence_fill_data"),
]
operations = [migrations.DeleteModel(name="UserPresenceOld")]