Files
zulip/zerver/migrations/0186_userprofile_starred_message_counts.py
Anders Kaseorg 6e4c3e41dc python: Normalize quotes with Black.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
2021-02-12 13:11:19 -08:00

19 lines
406 B
Python

# Generated by Django 1.11.14 on 2018-08-17 06:06
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("zerver", "0185_realm_plan_type"),
]
operations = [
migrations.AddField(
model_name="userprofile",
name="starred_message_counts",
field=models.BooleanField(default=False),
),
]