mirror of https://github.com/zulip/zulip.git
21 lines
488 B
Python
21 lines
488 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Generated by Django 1.11.26 on 2019-12-11 00:41
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('zerver', '0257_fix_has_link_attribute'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='userprofile',
|
||
|
name='enable_online_push_notifications',
|
||
|
field=models.BooleanField(default=True),
|
||
|
),
|
||
|
]
|