Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.10/site-packages/django/db/models/constants.py: 100%

Shortcuts on this page

r m x   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

5 statements  

1""" 

2Constants used across the ORM in general. 

3""" 

4 

5from enum import Enum 

6 

7# Separator used to split filter strings apart. 

8LOOKUP_SEP = "__" 

9 

10 

11class OnConflict(Enum): 

12 IGNORE = "ignore" 

13 UPDATE = "update"