missing semicolon

This commit is contained in:
Tim Griesser 2013-07-12 14:20:05 -04:00
parent 79aecafdf4
commit ec5ce94aa9

View File

@ -174,7 +174,7 @@ PostgresClient.schemaGrammar = _.extend({}, base.schemaGrammar, PostgresClient.g
var table = this.wrapTable(blueprint); var table = this.wrapTable(blueprint);
var comment; var comment;
if (command.comment == void 0) { if (command.comment == void 0) {
comment = 'NULL' comment = 'NULL';
} else { } else {
comment = "'" + command.comment + "'"; comment = "'" + command.comment + "'";
} }