mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 05:53:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			406 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			406 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# Generated by Django 3.2.12 on 2022-03-05 14:40
 | 
						|
 | 
						|
from django.db import migrations, models
 | 
						|
 | 
						|
 | 
						|
class Migration(migrations.Migration):
 | 
						|
 | 
						|
    dependencies = [
 | 
						|
        ("zerver", "0378_alter_realmuserdefault_realm"),
 | 
						|
    ]
 | 
						|
 | 
						|
    operations = [
 | 
						|
        migrations.AddField(
 | 
						|
            model_name="userprofile",
 | 
						|
            name="uuid",
 | 
						|
            field=models.UUIDField(null=True, unique=True),
 | 
						|
        ),
 | 
						|
    ]
 |