Files
django-test/env/lib/python3.8/site-packages/django/db/models/constants.py
2022-08-26 16:41:18 +06:00

13 lines
209 B
Python

"""
Constants used across the ORM in general.
"""
from enum import Enum
# Separator used to split filter strings apart.
LOOKUP_SEP = "__"
class OnConflict(Enum):
IGNORE = "ignore"
UPDATE = "update"