mirror of
https://github.com/zulip/zulip.git
synced 2025-11-21 15:09:34 +00:00
Rename notification property `enable_stream_sounds` to `enable_stream_audible_notifications` to match with other notification property patterns. Fixes part of #12304
21 lines
487 B
Python
21 lines
487 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.20 on 2019-06-12 06:41
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('zerver', '0229_stream_message_retention_days'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RenameField(
|
|
model_name='userprofile',
|
|
old_name='enable_stream_sounds',
|
|
new_name='enable_stream_audible_notifications',
|
|
),
|
|
]
|