Files
links/.venv/lib/python3.10/site-packages/django/db/models/constants.py
2025-05-06 20:44:33 +09:00

14 lines
210 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"