mirror of
				https://github.com/zulip/zulip.git
				synced 2025-10-31 03:53:50 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			366 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			366 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from django.db import migrations
 | |
| 
 | |
| 
 | |
| class Migration(migrations.Migration):
 | |
|     elidable = True
 | |
| 
 | |
|     dependencies = [
 | |
|         ("analytics", "0017_regenerate_partial_indexes"),
 | |
|     ]
 | |
| 
 | |
|     operations = [
 | |
|         migrations.RunSQL(
 | |
|             "DELETE FROM analytics_usercount WHERE property = 'active_users_audit:is_bot:day'",
 | |
|             elidable=True,
 | |
|         )
 | |
|     ]
 |