mirror of
https://gitdab.com/cadence/out-of-your-element.git
synced 2025-09-10 12:22:50 +02:00
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()
|