Source code for superdjango.db.eav.constants

# noinspection PyPep8Naming
[docs]class DATA_TYPE: """The data type of a custom field.""" BOOLEAN = "boolean" DATE = "date" DATETIME = "datetime" DECIMAL = "decimal" DURATION = "duration" EMAIL = "email" FLOAT = "float" INTEGER = "integer" IP_ADDRESS = "ip" LIST = "list" SLUG = "slug" TEXT = "text" TIME = "time" URL = "url" VARCHAR = "varchar"