mirror of
https://github.com/zulip/zulip.git
synced 2025-11-01 20:44:04 +00:00
18 lines
404 B
Python
18 lines
404 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from django.db import migrations, models
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('zerver', '0048_enter_sends_default_to_false'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='userprofile',
|
|
name='pm_content_in_desktop_notifications',
|
|
field=models.BooleanField(default=True),
|
|
),
|
|
]
|