Files
zulip/zerver/migrations/0195_realm_first_visible_message_id.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
413 B
Python

# Generated by Django 1.11.16 on 2018-12-05 14:50
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("zerver", "0194_userprofile_notification_sound"),
]
operations = [
migrations.AddField(
model_name="realm",
name="first_visible_message_id",
field=models.IntegerField(default=0),
),
]