2020-06-19 12:07:18 +02:00
|
|
|
# Generated by Django 2.2.13 on 2020-06-19 08:16
|
|
|
|
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
2021-02-12 08:20:45 +01:00
|
|
|
("zerver", "0287_clear_duplicate_reactions"),
|
2020-06-19 12:07:18 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AlterUniqueTogether(
|
2021-02-12 08:20:45 +01:00
|
|
|
name="archivedreaction",
|
2021-02-12 08:19:30 +01:00
|
|
|
unique_together={
|
2021-02-12 08:20:45 +01:00
|
|
|
("user_profile", "message", "emoji_name"),
|
|
|
|
("user_profile", "message", "reaction_type", "emoji_code"),
|
2021-02-12 08:19:30 +01:00
|
|
|
},
|
2020-06-19 12:07:18 +02:00
|
|
|
),
|
|
|
|
migrations.AlterUniqueTogether(
|
2021-02-12 08:20:45 +01:00
|
|
|
name="reaction",
|
2021-02-12 08:19:30 +01:00
|
|
|
unique_together={
|
2021-02-12 08:20:45 +01:00
|
|
|
("user_profile", "message", "emoji_name"),
|
|
|
|
("user_profile", "message", "reaction_type", "emoji_code"),
|
2021-02-12 08:19:30 +01:00
|
|
|
},
|
2020-06-19 12:07:18 +02:00
|
|
|
),
|
|
|
|
]
|