mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 05:53:43 +00:00 
			
		
		
		
	A deprecated import shouldn’t be used even in a migration, since the migration will need to remain runnable in the future. We never needed a migration for this switch anyway; we just needed to edit the old migration, since no actual state changes are involved. Signed-off-by: Anders Kaseorg <anders@zulip.com>
		
			
				
	
	
		
			19 lines
		
	
	
		
			414 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			414 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# Generated by Django 1.11.25 on 2019-11-06 22:40
 | 
						|
 | 
						|
from django.db import migrations, models
 | 
						|
 | 
						|
 | 
						|
class Migration(migrations.Migration):
 | 
						|
 | 
						|
    dependencies = [
 | 
						|
        ("zerver", "0280_userprofile_presence_enabled"),
 | 
						|
    ]
 | 
						|
 | 
						|
    operations = [
 | 
						|
        migrations.AddField(
 | 
						|
            model_name="userprofile",
 | 
						|
            name="zoom_token",
 | 
						|
            field=models.JSONField(default=None, null=True),
 | 
						|
        ),
 | 
						|
    ]
 |