mirror of
https://github.com/home-assistant/core.git
synced 2025-07-23 21:27:38 +00:00
Fix double precision float for postgresql (#55249)
This commit is contained in:
parent
e6d710c203
commit
6d4a47a53d
@ -70,7 +70,7 @@ DOUBLE_TYPE = (
|
|||||||
Float()
|
Float()
|
||||||
.with_variant(mysql.DOUBLE(asdecimal=False), "mysql")
|
.with_variant(mysql.DOUBLE(asdecimal=False), "mysql")
|
||||||
.with_variant(oracle.DOUBLE_PRECISION(), "oracle")
|
.with_variant(oracle.DOUBLE_PRECISION(), "oracle")
|
||||||
.with_variant(postgresql.DOUBLE_PRECISION, "postgresql")
|
.with_variant(postgresql.DOUBLE_PRECISION(), "postgresql")
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user