Files
vppn/hub/api/db/tables.defs
2026-06-07 18:12:44 +02:00

25 lines
459 B
Plaintext

TABLE config OF Config (
ConfigID int64 PK,
Password []byte
);
TABLE networks OF Network (
NetworkID int64 PK,
Name string NoUpdate,
Network []byte NoUpdate
);
TABLE peers OF Peer (
NetworkID int64 PK,
PeerIP byte PK,
Version int64,
APIKey string NoUpdate,
Name string,
Addr4 []byte,
Port4 uint16,
Addr6 []byte,
Port6 uint16,
Relay bool,
WGPubKey []byte NoUpdate
);