[docs]classCommand(BaseCommand):help="Clean up senior destinations"defhandle(self,*args,**options):ifSenior.objects.exists():yn=input("Are you sure you want to delete all senior destinations? [y/N]\n")ifyn.lower()=="y":print(f"Deleting {Senior.objects.count()} destinations.")Senior.objects.all().delete()print("Deleted destinations.")returnprint("No action taken.")