mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-03 21:43:21 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			680 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			680 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# Generated by Django 1.10.5 on 2017-04-23 19:51
 | 
						|
from django.db import migrations, models
 | 
						|
 | 
						|
 | 
						|
class Migration(migrations.Migration):
 | 
						|
 | 
						|
    dependencies = [
 | 
						|
        ("zerver", "0075_attachment_path_id_unique"),
 | 
						|
    ]
 | 
						|
 | 
						|
    operations = [
 | 
						|
        migrations.AddField(
 | 
						|
            model_name="userprofile",
 | 
						|
            name="emojiset",
 | 
						|
            field=models.CharField(
 | 
						|
                choices=[
 | 
						|
                    ("apple", "Apple"),
 | 
						|
                    ("emojione", "Emoji One"),
 | 
						|
                    ("google", "Google"),
 | 
						|
                    ("twitter", "Twitter"),
 | 
						|
                ],
 | 
						|
                default="google",
 | 
						|
                max_length=20,
 | 
						|
            ),
 | 
						|
        ),
 | 
						|
    ]
 |