summaryrefslogtreecommitdiff
path: root/django/db/models/constants.py
blob: cec1b9b90f7a21c3cf521274faf0cf514eef2699 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
"""
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"