Skip to content

Commit 11524ea

Browse files
author
unknown
committed
Hotfix of curly brace
1 parent 59af18b commit 11524ea

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)