Changes between Initial Version and Version 1 of Ticket #30379, comment 3
- Timestamp:
- Apr 17, 2019, 11:33:04 AM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #30379, comment 3
initial v1 16 16 then both 17 17 {{{#!python 18 Alert.objects.exclude(item__ order_items__user=models.F('user'))18 Alert.objects.exclude(item__user_items__user=models.F('user')) 19 19 }}} 20 20 and 21 21 {{{#!python 22 Alert.objects.exclude(item__ order_items__user=the_user)22 Alert.objects.exclude(item__user_items__user=the_user) 23 23 }}} 24 24 both emit `ProgrammingError`s.