Files

14 lines
210 B
Python
Raw Permalink Normal View History

2025-12-11 18:15:56 +03: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"