From 0ba313210a7cae0ef42c15ffe002ebd835e69d24 Mon Sep 17 00:00:00 2001 From: 1ilit <1ilit@proton.me> Date: Tue, 24 Jun 2025 15:06:35 +0400 Subject: [PATCH] Fix double precision type and color for postgres (#510) --- src/data/datatypes.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/data/datatypes.js b/src/data/datatypes.js index c729f76..dca9fbe 100644 --- a/src/data/datatypes.js +++ b/src/data/datatypes.js @@ -897,7 +897,8 @@ const postgresTypesBase = { hasPrecision: true, }, "DOUBLE PRECISION": { - type: decimalColor, + type: "DOUBLE PRECISION", + color: decimalColor, checkDefault: (field) => { return doubleRegex.test(field.default); },