Skip to content

Commit db81cbc

Browse files
committed
Formatting
1 parent 16dc5a6 commit db81cbc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ddl.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ export class DDL {
228228
if (dbType === DB.Provider.POSTGRES && type === "JSON") type = "JSONB";
229229
if (dbType === DB.Provider.POSTGRES && autoIncrement) type = "SERIAL";
230230

231-
return `${pad}${name.padEnd(namePad)}${(type+length).padEnd(13)}${nullable}${as}${dv ? " DEFAULT " + dv : ""}${key}${gen}${comment},\n`;
231+
return `${pad}${name.padEnd(namePad)}${(type + length).padEnd(13)}${nullable}${as}${dv ? " DEFAULT " + dv : ""}${key}${gen}${comment},\n`;
232232
}
233233

234234
// Index generator

0 commit comments

Comments
 (0)