Files
zulip/zerver/migrations/0202_add_user_status_info.py
Anders Kaseorg c734bbd95d python: Modernize legacy Python 2 syntax with pyupgrade.
Generated by `pyupgrade --py3-plus --keep-percent-format` on all our
Python code except `zthumbor` and `zulip-ec2-configure-interfaces`,
followed by manual indentation fixes.

Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-09 16:43:22 -07:00

24 lines
573 B
Python

# Generated by Django 1.11.18 on 2019-01-19 19:59
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('zerver', '0201_zoom_video_chat'),
]
operations = [
migrations.AddField(
model_name='userstatus',
name='status_text',
field=models.CharField(default='', max_length=255),
),
migrations.AlterField(
model_name='userstatus',
name='status',
field=models.PositiveSmallIntegerField(default=0),
),
]