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>
		
			
				
	
	
		
			18 lines
		
	
	
		
			379 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			379 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# Generated by Django 3.1.5 on 2021-01-10 11:30
 | 
						|
 | 
						|
from typing import List
 | 
						|
 | 
						|
from django.db import migrations
 | 
						|
 | 
						|
 | 
						|
class Migration(migrations.Migration):
 | 
						|
    """
 | 
						|
    This empty migration is only retained for Django's tracking.
 | 
						|
    """
 | 
						|
 | 
						|
    dependencies = [
 | 
						|
        ("zerver", "0309_userprofile_can_create_users"),
 | 
						|
    ]
 | 
						|
 | 
						|
    operations: List[migrations.operations.base.Operation] = []
 |