Is it possible to index only the date aspect of a models.DateTimeField in Django?
I cant seem to find it in the documentation, and i'm not sure if doing something like this works
class Meta:
indexes = [
models.Index(fields=['created_at__year', 'created_at__month', 'created_at__day']),
]