Files
zulip/zerver/migrations/0050_userprofile_avatar_version.py
Adarsh S ec44edb305 Add avatar_version to UserProfile.
avatar_version is used to keep track of the avatar version of the
user and to update the cache, everytime the user updates their avatar.
2017-01-23 23:29:07 +05:30

21 lines
502 B
Python

# -*- coding: utf-8 -*-
# Generated by Django 1.10.5 on 2017-01-23 17:44
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('zerver', '0049_userprofile_pm_content_in_desktop_notifications'),
]
operations = [
migrations.AddField(
model_name='userprofile',
name='avatar_version',
field=models.PositiveSmallIntegerField(default=1),
),
]