mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-03 21:43:21 +00:00 
			
		
		
		
	This will make django automatically remove them when we run squashmigrations. There are still some RunSQL statements which we will have to take care of manually.
		
			
				
	
	
		
			24 lines
		
	
	
		
			724 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			724 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# Generated by Django 1.11.4 on 2017-08-30 00:26
 | 
						|
from django.db import migrations
 | 
						|
from django.db.backends.postgresql.schema import DatabaseSchemaEditor
 | 
						|
from django.db.migrations.state import StateApps
 | 
						|
 | 
						|
from zerver.lib.fix_unreads import fix
 | 
						|
 | 
						|
 | 
						|
def fix_unreads(apps: StateApps, schema_editor: DatabaseSchemaEditor) -> None:
 | 
						|
    UserProfile = apps.get_model("zerver", "UserProfile")
 | 
						|
    user_profiles = list(UserProfile.objects.filter(is_bot=False))
 | 
						|
    for user_profile in user_profiles:
 | 
						|
        fix(user_profile)
 | 
						|
 | 
						|
class Migration(migrations.Migration):
 | 
						|
 | 
						|
    dependencies = [
 | 
						|
        ('zerver', '0103_remove_userprofile_muted_topics'),
 | 
						|
    ]
 | 
						|
 | 
						|
    operations = [
 | 
						|
        migrations.RunPython(fix_unreads, elidable=True),
 | 
						|
    ]
 |