forked from cadence/out-of-your-element
7 lines
175 B
JavaScript
Executable file
7 lines
175 B
JavaScript
Executable file
#!/usr/bin/env node
|
|
// @ts-check
|
|
|
|
const {getDatabase} = require("../src/db/database")
|
|
const db = getDatabase({fileMustExist: true})
|
|
db.pragma("journal_mode = wal")
|
|
db.close()
|