mirror of https://github.com/zulip/zulip.git
21 lines
479 B
Python
21 lines
479 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Generated by Django 1.10.4 on 2016-12-29 02:18
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('zerver', '0047_realm_add_emoji_by_admins_only'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='userprofile',
|
||
|
name='enter_sends',
|
||
|
field=models.NullBooleanField(default=False),
|
||
|
),
|
||
|
]
|