We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60d9307 commit c515542Copy full SHA for c515542
src/auto-generator.ts
@@ -398,7 +398,7 @@ export class AutoGenerator {
398
399
str += space[3] + attr + ": " + val_text;
400
401
- } else if (attr === "comment" && !fieldObj[attr]) {
+ } else if (attr === "comment" && (!fieldObj[attr] || this.dialect.name === "mssql")) {
402
return true;
403
} else {
404
let val = (attr !== "type") ? null : this.getSqType(fieldObj, attr);
0 commit comments