Files
zulip/zerver/migrations/0056_userprofile_emoji_alt_code.py
Sourav Badami 4616ee7762 Enable display of emoji as their alt codes in reactions.
This currently only supports this in emoji reactions, not in actual
emoji in message bodies, but it's a great start for people who want a
text-only view.

Tweaked to update the text by tabbott.

Fixes #3169.
2017-03-03 15:19:34 -08:00

21 lines
461 B
Python

# -*- coding: utf-8 -*-
# Generated by Django 1.10.5 on 2017-03-02 07:28
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('zerver', '0055_attachment_size'),
]
operations = [
migrations.AddField(
model_name='userprofile',
name='emoji_alt_code',
field=models.BooleanField(default=False),
),
]