add uuid field and tests

This commit is contained in:
collerek
2020-09-30 11:17:03 +02:00
parent d9aa269f7a
commit 304fe6aafc
7 changed files with 109 additions and 1 deletions

View File

@ -13,6 +13,7 @@ from ormar.fields import (
String,
Text,
Time,
UUID,
)
from ormar.models import Model
from ormar.queryset import QuerySet
@ -49,4 +50,5 @@ __all__ = [
"QuerySet",
"RelationType",
"Undefined",
"UUID",
]