We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08ae4da commit fd81680Copy full SHA for fd81680
cardinal_pythonlib/sqlalchemy/schema.py
@@ -68,14 +68,19 @@
68
Boolean,
69
Date,
70
DateTime,
71
- Double,
72
Float,
73
Integer,
74
Numeric,
75
SmallInteger,
76
Text,
77
TypeEngine,
78
)
+
79
+try:
80
+ from sqlalchemy.sql.sqltypes import Double
81
+except ImportError:
82
+ from sqlalchemy.sql.sqltypes import Float as Double
83
84
from sqlalchemy.sql.visitors import Visitable
85
86
from cardinal_pythonlib.logs import get_brace_style_log_with_null_handler
0 commit comments