This repository has been archived on 2023-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
python-blog/attachments/management/commands/reprocess_all_attachments.py

15 lines
482 B
Python

from django.core.management.base import BaseCommand
from attachments.models import Attachment
class Command(BaseCommand):
help = "Reprocess all attachments"
def handle(self, *args, **options):
for attachment in Attachment.objects.all():
self.stdout.write(f"Processing {attachment}...")
attachment.processed_file = None
attachment.save()
self.stdout.write(self.style.SUCCESS("Successfully processed all attachments."))