Bugfixes for remote nodes

This commit is contained in:
Owen
2025-10-30 21:01:45 -07:00
parent 4eb5bf08d5
commit 32f20ed984
7 changed files with 57 additions and 364 deletions

View File

@@ -212,6 +212,7 @@ export default async function migration() {
db.prepare(
`ALTER TABLE 'user' ADD 'lastPasswordChange' integer;`
).run();
db.prepare(`ALTER TABLE 'remoteExitNode' ADD 'secondaryVersion' text;`).run();
// get all of the domains
const domains = db.prepare(`SELECT domainId, baseDomain from domains`).all() as {