django-notifications/notifications/migrations/0008_index_together_recipient_unread.py
Federico Capoano d55aae4e3d [models] Added AbstractNotification #202
Implements and closes #102
2019-04-28 14:59:42 -04:00

19 lines
469 B
Python

# Generated by Django 2.1.8 on 2019-04-27 21:26
from django.conf import settings
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
('notifications', '0007_add_timestamp_index'),
]
operations = [
migrations.AlterIndexTogether(
name='notification',
index_together={('recipient', 'unread')},
),
]