mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-03 21:43:21 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			355 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			355 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from django.db import migrations
 | 
						|
 | 
						|
 | 
						|
class Migration(migrations.Migration):
 | 
						|
    """
 | 
						|
    Finalizes the migration to the new UserPresence model.
 | 
						|
    We can get rid of the old table together with its data.
 | 
						|
    """
 | 
						|
 | 
						|
    dependencies = [
 | 
						|
        ("zerver", "0444_userpresence_fill_data"),
 | 
						|
    ]
 | 
						|
 | 
						|
    operations = [migrations.DeleteModel(name="UserPresenceOld")]
 |