mirror of https://github.com/zulip/zulip.git
16 lines
377 B
Python
16 lines
377 B
Python
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("zerver", "0033_migrate_domain_to_realmalias"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="userprofile",
|
|
name="enable_online_push_notifications",
|
|
field=models.BooleanField(default=False),
|
|
),
|
|
]
|