mirror of https://github.com/zulip/zulip.git
28 lines
739 B
Python
28 lines
739 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.10.5 on 2017-02-15 06:18
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('zerver', '0053_emailchangestatus'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='realm',
|
|
name='icon_source',
|
|
field=models.CharField(
|
|
choices=[('G', 'Hosted by Gravatar'), ('U', 'Uploaded by administrator')],
|
|
default='G', max_length=1),
|
|
),
|
|
migrations.AddField(
|
|
model_name='realm',
|
|
name='icon_version',
|
|
field=models.PositiveSmallIntegerField(default=1),
|
|
),
|
|
]
|