mirror of
https://github.com/Hopiu/django-notifications.git
synced 2026-05-26 05:03:46 +00:00
19 lines
469 B
Python
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')},
|
|
),
|
|
]
|