check if data binding not work only in sqlite

This commit is contained in:
collerek
2021-03-09 17:00:13 +01:00
parent d7931a2db8
commit f424e65a40
7 changed files with 349 additions and 24 deletions

View File

@ -53,6 +53,7 @@ from ormar.fields import (
Time,
UUID,
UniqueColumns,
EncryptBackends
) # noqa: I100
from ormar.models import ExcludableItems, Model
from ormar.models.metaclass import ModelMeta
@ -68,7 +69,7 @@ class UndefinedType: # pragma no cover
Undefined = UndefinedType()
__version__ = "0.9.7"
__version__ = "0.9.8"
__all__ = [
"Integer",
"BigInteger",
@ -110,4 +111,5 @@ __all__ = [
"ExcludableItems",
"and_",
"or_",
"EncryptBackends"
]