Changes between Initial Version and Version 1 of Ticket #30379, comment 3


Ignore:
Timestamp:
Apr 17, 2019, 11:33:04 AM (5 years ago)
Author:
Peter Law

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #30379, comment 3

    initial v1  
    1616then both
    1717{{{#!python
    18 Alert.objects.exclude(item__order_items__user=models.F('user'))
     18Alert.objects.exclude(item__user_items__user=models.F('user'))
    1919}}}
    2020and
    2121{{{#!python
    22 Alert.objects.exclude(item__order_items__user=the_user)
     22Alert.objects.exclude(item__user_items__user=the_user)
    2323}}}
    2424both emit `ProgrammingError`s.
Back to Top