Changes between Initial Version and Version 1 of Ticket #35110
- Timestamp:
- Jan 12, 2024, 9:59:09 PM (10 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #35110 – Description
initial v1 6 6 In both cases, you can make the field distinct. 7 7 8 {{{ 8 9 class Person(models.Model): 9 10 email = models.CharField() … … 25 26 # foreign key case 26 27 Customer.objects.distinct("person__email").in_bulk(emails_to_process, fieldname="person__email) 28 }}}