Files
zulip/zerver/migrations/0325_alter_realmplayground_unique_together.py
Sumanth V Rao 96c5a9e303 models: Fix bug in unique_together condition on RealmPlayground.
We don't need to worry about breaking already configured playgrounds
since this tweak makes the condition less strict.
2021-05-26 18:17:24 -07:00

18 lines
392 B
Python

# Generated by Django 3.2.2 on 2021-05-13 00:16
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
("zerver", "0324_fix_deletion_cascade_behavior"),
]
operations = [
migrations.AlterUniqueTogether(
name="realmplayground",
unique_together={("realm", "pygments_language", "name")},
),
]