mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-03 21:43:21 +00:00 
			
		
		
		
	This was replaced by the new user-level version in recent commits. Fixes #20035. Fixes #18149.
		
			
				
	
	
		
			17 lines
		
	
	
		
			379 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			379 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# Generated by Django 3.2.8 on 2021-10-28 14:53
 | 
						|
 | 
						|
from django.db import migrations
 | 
						|
 | 
						|
 | 
						|
class Migration(migrations.Migration):
 | 
						|
    dependencies = [
 | 
						|
        ("zerver", "0427_migrate_to_user_level_email_address_visibility_setting"),
 | 
						|
    ]
 | 
						|
 | 
						|
    operations = [
 | 
						|
        migrations.RemoveField(
 | 
						|
            model_name="realm",
 | 
						|
            name="email_address_visibility",
 | 
						|
        ),
 | 
						|
    ]
 |