Files
zulip/zerver/migrations/0348_rename_date_muted_usertopic_last_updated.py
Abhijeet Prasad Bodas 2aea944a7e models: Rename UserTopic.date_muted to last_updated.
This is a follow-up to #19388.

We will in the future allow patch requests to change the visibility
of an existing topic, so `last_updated` is better name for this field.

This commit does not affect the API or events in any way, but only the
database.
2021-09-17 12:14:28 -07:00

19 lines
377 B
Python

# Generated by Django 3.2.5 on 2021-07-29 11:47
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
("zerver", "0347_realm_emoji_animated"),
]
operations = [
migrations.RenameField(
model_name="usertopic",
old_name="date_muted",
new_name="last_updated",
),
]