Plain is headed towards 1.0! Subscribe for development updates →
1""" 2Constants used across the ORM in general. 3""" 4 5from enum import Enum 6 7# Separator used to split filter strings apart. 8LOOKUP_SEP = "__" 9 10 11class OnConflict(Enum): 12 IGNORE = "ignore" 13 UPDATE = "update"