mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-03 21:43:21 +00:00 
			
		
		
		
	This requires a bit of complexity to avoid a name collision in COUNT_STATS with the RemoteInstallationCount stats with the same name.
		
			
				
	
	
		
			26 lines
		
	
	
		
			719 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			719 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# Generated by Django 4.2.6 on 2023-11-09 17:23
 | 
						|
 | 
						|
import django.db.models.deletion
 | 
						|
from django.db import migrations, models
 | 
						|
 | 
						|
 | 
						|
class Migration(migrations.Migration):
 | 
						|
    dependencies = [
 | 
						|
        ("zilencer", "0034_remoterealmauditlog_remote_realm_and_more"),
 | 
						|
    ]
 | 
						|
 | 
						|
    operations = [
 | 
						|
        migrations.AddField(
 | 
						|
            model_name="remoterealmcount",
 | 
						|
            name="remote_realm",
 | 
						|
            field=models.ForeignKey(
 | 
						|
                null=True, on_delete=django.db.models.deletion.CASCADE, to="zilencer.remoterealm"
 | 
						|
            ),
 | 
						|
        ),
 | 
						|
        migrations.AlterField(
 | 
						|
            model_name="remoterealmcount",
 | 
						|
            name="realm_id",
 | 
						|
            field=models.IntegerField(null=True),
 | 
						|
        ),
 | 
						|
    ]
 |