You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 10, 2022. It is now read-only.
I have a column setup as double precision data type without any precision number specified.
But a 53 precision is used as default which is bad for PostgreSQL.
I have a column setup as
double precision
data type without any precision number specified.But a
53
precision is used as default which is bad for PostgreSQL.The generated Typescript is
So the create table script contains
Here is the error thrown by PostgreSQL
syntax error on or near "("
Precision number is not supported by PostgreSQL it is defined as 15 decimal digits precision according to the documentation
typeorm-model-generator version 0.3.5
PostgreSQL version 11
typeorm version 0.2.19
The text was updated successfully, but these errors were encountered: