Files
zulip/zerver/migrations/0230_rename_to_enable_stream_audible_notifications.py
Yashashvi Dave 8e269b4651 models: Rename notification to enable_stream_audible_notifications.
Rename notification property `enable_stream_sounds` to
`enable_stream_audible_notifications` to match with other
notification property patterns.

Fixes part of #12304
2019-06-12 16:24:51 -07:00

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',
),
]