Files
zulip/zerver/migrations/0347_realm_emoji_animated.py
Riken Shah 8c31e6f96e emoji: Add backend changes to support still image for animated emojis.
Now, when we add a custom animated emoji to the realm
we also save a still image of it (1st frame of the gif). So
we can avoid showing an animated emoji every time.
2021-09-12 07:13:04 +00:00

19 lines
408 B
Python

# Generated by Django 3.2.6 on 2021-09-11 16:51
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("zerver", "0346_create_realm_user_default_table"),
]
operations = [
migrations.AddField(
model_name="realmemoji",
name="is_animated",
field=models.BooleanField(default=False),
),
]