Skip to content

Commit 80a3cf7

Browse files
committed
Adds a space between "if" and "(err)" in sqlite create table
1 parent 001c565 commit 80a3cf7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Drivers/DDL/sqlite.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ exports.sync = function (driver, opts, cb) {
116116
pending = queries.length;
117117
for (i = 0; i < queries.length; i++) {
118118
driver.db.all(queries[i], function (err) {
119-
if(err) console.log(err);
119+
if (err) console.log(err);
120120
if (--pending === 0) {
121121
return cb(err);
122122
}

0 commit comments

Comments
 (0)