Files
zulip/zerver/migrations/0179_rename_to_digest_emails_enabled.py
Roman Godov 5e70577f84 models: Rename Realm.show_digest_email field.
This renames Realm.show_digest_email field to
digest_emails_enabled, for greater clarity as to what it does
just from seeing the setting name, without having to look it up.

Fixes part of #10042.
2018-08-01 11:05:58 -07:00

21 lines
473 B
Python

# -*- coding: utf-8 -*-
# Generated by Django 1.11.14 on 2018-08-01 10:59
from __future__ import unicode_literals
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('zerver', '0178_rename_to_emails_restricted_to_domains'),
]
operations = [
migrations.RenameField(
model_name='realm',
old_name='show_digest_email',
new_name='digest_emails_enabled',
),
]