mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 05:53:43 +00:00 
			
		
		
		
	We change how a few imports in migrations are done to be easier to lint and more consitsent with our typical import style.
		
			
				
	
	
		
			21 lines
		
	
	
		
			521 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			521 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# Generated by Django 1.11.20 on 2019-03-17 08:37
 | 
						|
 | 
						|
from django.db import migrations, models
 | 
						|
 | 
						|
from zerver.models import generate_email_token_for_stream
 | 
						|
 | 
						|
 | 
						|
class Migration(migrations.Migration):
 | 
						|
 | 
						|
    dependencies = [
 | 
						|
        ('zerver', '0211_add_users_field_to_scheduled_email'),
 | 
						|
    ]
 | 
						|
 | 
						|
    operations = [
 | 
						|
        migrations.AlterField(
 | 
						|
            model_name='stream',
 | 
						|
            name='email_token',
 | 
						|
            field=models.CharField(default=generate_email_token_for_stream, max_length=32, unique=True),
 | 
						|
        ),
 | 
						|
    ]
 |