first comit
This commit is contained in:
13
venv/lib/python3.10/site-packages/django/db/models/constants.py
Executable file
13
venv/lib/python3.10/site-packages/django/db/models/constants.py
Executable file
@@ -0,0 +1,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"
|
||||
Reference in New Issue
Block a user