2019-02-13 10:22:16 +01:00
|
|
|
# Generated by Django 1.11.18 on 2019-02-12 17:41
|
|
|
|
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
2020-01-14 21:59:46 +01:00
|
|
|
|
2019-02-13 10:22:16 +01:00
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
|
|
|
dependencies = [
|
2021-02-12 08:20:45 +01:00
|
|
|
("zerver", "0219_toggle_realm_digest_emails_enabled_default"),
|
2019-02-13 10:22:16 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AlterField(
|
2021-02-12 08:20:45 +01:00
|
|
|
model_name="subscription",
|
|
|
|
name="audible_notifications",
|
2019-02-13 10:22:16 +01:00
|
|
|
field=models.NullBooleanField(default=None),
|
|
|
|
),
|
|
|
|
migrations.AlterField(
|
2021-02-12 08:20:45 +01:00
|
|
|
model_name="subscription",
|
|
|
|
name="desktop_notifications",
|
2019-02-13 10:22:16 +01:00
|
|
|
field=models.NullBooleanField(default=None),
|
|
|
|
),
|
|
|
|
migrations.AlterField(
|
2021-02-12 08:20:45 +01:00
|
|
|
model_name="subscription",
|
|
|
|
name="email_notifications",
|
2019-02-13 10:22:16 +01:00
|
|
|
field=models.NullBooleanField(default=None),
|
|
|
|
),
|
|
|
|
migrations.AlterField(
|
2021-02-12 08:20:45 +01:00
|
|
|
model_name="subscription",
|
|
|
|
name="push_notifications",
|
2019-02-13 10:22:16 +01:00
|
|
|
field=models.NullBooleanField(default=None),
|
|
|
|
),
|
|
|
|
]
|