We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 16dc5a6 commit db81cbcCopy full SHA for db81cbc
src/ddl.ts
@@ -228,7 +228,7 @@ export class DDL {
228
if (dbType === DB.Provider.POSTGRES && type === "JSON") type = "JSONB";
229
if (dbType === DB.Provider.POSTGRES && autoIncrement) type = "SERIAL";
230
231
- return `${pad}${name.padEnd(namePad)}${(type+length).padEnd(13)}${nullable}${as}${dv ? " DEFAULT " + dv : ""}${key}${gen}${comment},\n`;
+ return `${pad}${name.padEnd(namePad)}${(type + length).padEnd(13)}${nullable}${as}${dv ? " DEFAULT " + dv : ""}${key}${gen}${comment},\n`;
232
}
233
234
// Index generator
0 commit comments