mirror of
https://github.com/Hopiu/django-notifications.git
synced 2026-05-04 03:24:52 +00:00
33 lines
947 B
Python
33 lines
947 B
Python
# Generated by Django 2.0.2 on 2018-02-19 14:21
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('notifications', '0005_auto_20160504_1520'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='notification',
|
|
name='deleted',
|
|
field=models.BooleanField(db_index=True, default=False),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='notification',
|
|
name='emailed',
|
|
field=models.BooleanField(db_index=True, default=False),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='notification',
|
|
name='public',
|
|
field=models.BooleanField(db_index=True, default=True),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='notification',
|
|
name='unread',
|
|
field=models.BooleanField(db_index=True, default=True),
|
|
),
|
|
]
|