Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.8/site-packages/django/db/models/constants.py: 100%
5 statements
« prev ^ index » next coverage.py v7.0.5, created at 2023-01-17 06:13 +0000
« prev ^ index » next coverage.py v7.0.5, created at 2023-01-17 06:13 +0000
1"""
2Constants used across the ORM in general.
3"""
4from enum import Enum
6# Separator used to split filter strings apart.
7LOOKUP_SEP = "__"
10class OnConflict(Enum):
11 IGNORE = "ignore"
12 UPDATE = "update"