mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-03 21:43:21 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			727 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			727 B
		
	
	
	
		
			Python
		
	
	
	
	
	
import sys
 | 
						|
from argparse import ArgumentParser
 | 
						|
from typing import Any
 | 
						|
 | 
						|
from django.core.management.base import BaseCommand
 | 
						|
 | 
						|
from analytics.lib.counts import do_drop_all_analytics_tables
 | 
						|
 | 
						|
class Command(BaseCommand):
 | 
						|
    help = """Clear analytics tables."""
 | 
						|
 | 
						|
    def add_arguments(self, parser: ArgumentParser) -> None:
 | 
						|
        parser.add_argument('--force',
 | 
						|
                            action='store_true',
 | 
						|
                            help="Clear analytics tables.")
 | 
						|
 | 
						|
    def handle(self, *args: Any, **options: Any) -> None:
 | 
						|
        if options['force']:
 | 
						|
            do_drop_all_analytics_tables()
 | 
						|
        else:
 | 
						|
            print("Would delete all data from analytics tables (!); use --force to do so.")
 | 
						|
            sys.exit(1)
 |