15 lines
482 B
Python
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."))
|