Skip to content

Commit d1af5f3

Browse files
Merge pull request #52 from ArzamastsevVladyslav/fix/HCK-3407-space-between-precision-and-scale
Removed space between precision and scale
2 parents 7e22457 + 59af18b commit d1af5f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

forward_engineering/ddlProvider.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -722,7 +722,7 @@ module.exports = (baseProvider, options, app) => {
722722
if (dataTypeProperties.length) {
723723
dataTypeString += `(${dataTypeProperties.length})`;
724724
} else if (dataTypeProperties.precision && dataTypeProperties.scale) {
725-
dataTypeString += `(${dataTypeProperties.precision}, ${dataTypeProperties.scale})`;
725+
dataTypeString += `(${dataTypeProperties.precision},${dataTypeProperties.scale})`;
726726
} else if (dataTypeProperties.precision) {
727727
dataTypeString += `(${dataTypeProperties.precision}})`;
728728
}

0 commit comments

Comments
 (0)