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

@@ -162,6 +162,7 @@ export const remoteExitNodes = sqliteTable("remoteExitNode", {
secretHash: text("secretHash").notNull(),
dateCreated: text("dateCreated").notNull(),
version: text("version"),
secondaryVersion: text("secondaryVersion"), // This is to detect the new nodes after the transition to pangolin-node
exitNodeId: integer("exitNodeId").references(() => exitNodes.exitNodeId, {
onDelete: "cascade"
})