Skip to content

Commit b4303f9

Browse files
Merge pull request #53 from ArzamastsevVladyslav/fix/HCK-3407-space-between-precision-and-scale
Hotfix of curly brace
2 parents d1af5f3 + 11524ea commit b4303f9

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
@@ -724,7 +724,7 @@ module.exports = (baseProvider, options, app) => {
724724
} else if (dataTypeProperties.precision && dataTypeProperties.scale) {
725725
dataTypeString += `(${dataTypeProperties.precision},${dataTypeProperties.scale})`;
726726
} else if (dataTypeProperties.precision) {
727-
dataTypeString += `(${dataTypeProperties.precision}})`;
727+
dataTypeString += `(${dataTypeProperties.precision})`;
728728
}
729729

730730
return assignTemplates(templates.alterColumnType, {

0 commit comments

Comments
 (0)