mirror of
https://github.com/zulip/zulip.git
synced 2025-11-02 04:53:36 +00:00
17 lines
380 B
Python
17 lines
380 B
Python
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),
|
|
),
|
|
]
|