Changes between Initial Version and Version 1 of Ticket #33759


Ignore:
Timestamp:
Jun 1, 2022, 11:29:51 AM (2 years ago)
Author:
Christofer Bertonha
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #33759 – Description

    initial v1  
    66{{{
    77subquery = Comment.objects.filter(created_at__lt=datetime(2022, 6, 1))[:1000]
    8 Comment.objects..filter(id__in=subquery).delete()
     8Comment.objects.filter(id__in=subquery).delete()
    99}}}
    1010
Back to Top