mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-03 21:43:21 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			34 lines
		
	
	
		
			1000 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			1000 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# Generated by Django 3.2.4 on 2021-06-09 10:02
 | 
						|
 | 
						|
from django.db import migrations
 | 
						|
from django.db.backends.base.schema import BaseDatabaseSchemaEditor
 | 
						|
from django.db.migrations.state import StateApps
 | 
						|
 | 
						|
 | 
						|
def migrate_to_delete_own_message_policy(
 | 
						|
    apps: StateApps, schema_editor: BaseDatabaseSchemaEditor
 | 
						|
) -> None:
 | 
						|
    Realm = apps.get_model("zerver", "Realm")
 | 
						|
    Realm.POLICY_EVERYONE = 5
 | 
						|
    Realm.POLICY_ADMINS_ONLY = 2
 | 
						|
    Realm.objects.filter(allow_message_deleting=False).update(
 | 
						|
        delete_own_message_policy=Realm.POLICY_ADMINS_ONLY
 | 
						|
    )
 | 
						|
    Realm.objects.filter(allow_message_deleting=True).update(
 | 
						|
        delete_own_message_policy=Realm.POLICY_EVERYONE
 | 
						|
    )
 | 
						|
 | 
						|
 | 
						|
class Migration(migrations.Migration):
 | 
						|
    dependencies = [
 | 
						|
        ("zerver", "0355_realm_delete_own_message_policy"),
 | 
						|
    ]
 | 
						|
 | 
						|
    operations = [
 | 
						|
        migrations.RunPython(
 | 
						|
            migrate_to_delete_own_message_policy,
 | 
						|
            reverse_code=migrations.RunPython.noop,
 | 
						|
            elidable=True,
 | 
						|
        ),
 | 
						|
    ]
 |