Files
zulip/zerver/migrations/0195_realm_first_visible_message_id.py
Vishnu Ks 8a1794caa3 message: Store the value of first_visible_message_id in Realm table.
This eliminates a bunch of potentially buggy caching code, with no
material negative side effects.
2018-12-12 15:11:17 -08:00

21 lines
477 B
Python

# -*- coding: utf-8 -*-
# Generated by Django 1.11.16 on 2018-12-05 14:50
from __future__ import unicode_literals
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),
),
]