mirror of https://github.com/zulip/zulip.git
presence: Rewrite the backend data model - final migration.
This commit is contained in:
parent
027b67be80
commit
ed91e72c5c
|
@ -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")]
|
Loading…
Reference in New Issue