Skip to content

Commit

Permalink
Bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sapientabdullah committed Jul 17, 2024
1 parent d429752 commit c1b6a52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/db.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ if (!fs.existsSync(dbDir)) {
fs.mkdirSync(dbDir, { recursive: true });
}

const database = new Database(dbPath, { verbose: console.log });
const database = new Database(dbPath);

database.pragma("journal_mode = WAL");
database.pragma("foreign_keys = ON");
Expand Down

0 comments on commit c1b6a52

Please sign in to comment.