mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-03 21:43:21 +00:00 
			
		
		
		
	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.
		
			
				
	
	
		
			21 lines
		
	
	
		
			473 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			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',
 | 
						|
        ),
 | 
						|
    ]
 |