0004_profile_desktop_notifications.py 531 Bytes
Newer Older
1
# -*- coding: utf-8 -*-
Kohl Krisztofer committed
2

3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19

from django.db import models, migrations


class Migration(migrations.Migration):

    dependencies = [
        ('dashboard', '0003_message'),
    ]

    operations = [
        migrations.AddField(
            model_name='profile',
            name='desktop_notifications',
            field=models.BooleanField(default=False, help_text='Whether user wants to get desktop notification when an activity has finished and the window is not in focus.', verbose_name='Desktop notifications'),
        ),
    ]