add migration

This commit is contained in:
miloschwartz 2025-04-28 23:07:11 -04:00
parent 81adcd9234
commit 3ebc01df8c
No known key found for this signature in database
5 changed files with 4128 additions and 1461 deletions

View file

@ -104,7 +104,7 @@ export const exitNodes = sqliteTable("exitNodes", {
name: text("name").notNull(),
address: text("address").notNull(), // this is the address of the wireguard interface in gerbil
endpoint: text("endpoint").notNull(), // this is how to reach gerbil externally - gets put into the wireguard config
publicKey: text("pubicKey").notNull(),
publicKey: text("publicKey").notNull(),
listenPort: integer("listenPort").notNull(),
reachableAt: text("reachableAt") // this is the internal address of the gerbil http server for command control
});