mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 05:53:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			34 lines
		
	
	
		
			960 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			960 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# -*- coding: utf-8 -*-
 | 
						|
# Generated by Django 1.11.4 on 2017-08-24 02:39
 | 
						|
from __future__ import unicode_literals
 | 
						|
 | 
						|
from django.db import migrations
 | 
						|
from django.db.backends.postgresql_psycopg2.schema import DatabaseSchemaEditor
 | 
						|
from django.db.migrations.state import StateApps
 | 
						|
 | 
						|
def fix_realm_string_ids(apps, schema_editor):
 | 
						|
    # type: (StateApps, DatabaseSchemaEditor) -> None
 | 
						|
    Realm = apps.get_model('zerver', 'Realm')
 | 
						|
    if Realm.objects.count() != 2:
 | 
						|
        return
 | 
						|
 | 
						|
    zulip_realm = Realm.objects.get(string_id="zulip")
 | 
						|
    try:
 | 
						|
        user_realm = Realm.objects.exclude(id=zulip_realm.id)[0]
 | 
						|
    except Realm.DoesNotExist:
 | 
						|
        return
 | 
						|
 | 
						|
    user_realm.string_id = ""
 | 
						|
    user_realm.save()
 | 
						|
 | 
						|
class Migration(migrations.Migration):
 | 
						|
 | 
						|
    dependencies = [
 | 
						|
        ('zerver', '0107_multiuseinvite'),
 | 
						|
    ]
 | 
						|
 | 
						|
    operations = [
 | 
						|
        migrations.RunPython(fix_realm_string_ids,
 | 
						|
                             reverse_code=migrations.RunPython.noop),
 | 
						|
    ]
 |