Files
zulip/zerver/migrations/0031_remove_system_avatar_source.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

21 lines
485 B
Python

from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("zerver", "0030_realm_org_type"),
]
operations = [
migrations.AlterField(
model_name="userprofile",
name="avatar_source",
field=models.CharField(
choices=[("G", "Hosted by Gravatar"), ("U", "Uploaded by user")],
max_length=1,
default="G",
),
),
]