Files
ETB/ETB-API/venv/lib/python3.12/site-packages/django/db/models/constants.py
Iliyan Angelov 6b247e5b9f Updates
2025-09-19 11:58:53 +03: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"