angrybeanie_wagtail/env/lib/python3.12/site-packages/django/db/models/constants.py

14 lines
210 B
Python
Raw Permalink Normal View History

2025-07-25 21:32:16 +10:00
"""
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"