Flatlogic Bot d8fd7aae82 version 2
2026-03-13 01:41:36 +00: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"