hc99's picture
Add files using upload-large-folder tool
02bfabd verified
raw
history blame
209 Bytes
"""
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"