feat: add language support

This commit is contained in:
Julien Calixte
2026-03-01 17:46:02 +01:00
parent 2b54c8dd00
commit 6374566316
4 changed files with 16 additions and 4 deletions

View File

@@ -20,6 +20,14 @@ try {
// Column already exists — no-op
}
try {
db.exec(
`ALTER TABLE note ADD COLUMN language STRING;`,
);
} catch {
// Column already exists — no-op
}
try {
db.exec(`ALTER TABLE note RENAME COLUMN listed TO discoverable;`);
} catch {