summaryrefslogtreecommitdiff
path: root/database/db.js
blob: d8494297a8adf227597cb8d1b95e58d50eb1f019 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import fs from "fs";
import Database from "better-sqlite3";

const allMigrations = [
	"database/000_init.sql",
];

const db = new Database("jdm.db");
db.pragma("foreign_keys = ON");

db.transaction(function migrate() {
	let version;
	try {
		version = db.prepare("SELECT version FROM schema_version").all()[0].version;
	} catch {
		version = 0;
	}
	if (version === allMigrations.length) return;
	while (version < allMigrations.length) {
		db.exec(fs.readFileSync(allMigrations[version], "utf8"));
		version++;
	}
	db.exec(`DELETE FROM schema_version; INSERT INTO schema_version (version) VALUES (${version});`);
})();

export default db;