blob: 306ec7b535c41f196f813736e9045e876f75f5c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Generated by Django 2.1 on 2019-01-24 21:15
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('account', '0003_publicnetwork'),
('notifier', '0003_auto_20190123_1741'),
]
operations = [
migrations.RemoveField(
model_name='notification',
name='is_read',
),
migrations.AddField(
model_name='notification',
name='read_by',
field=models.ManyToManyField(related_name='read_notifications', to='account.UserProfile'),
),
]
|