/ radicle / src / node / routing / schema.sql
schema.sql
 1  --
 2  -- Routing table SQL schema.
 3  --
 4  create table if not exists "routing" (
 5    -- Resource being seeded.
 6    "resource"     text      not null,
 7    -- Node ID.
 8    "node"         text      not null,
 9    -- UNIX time at which this entry was added or refreshed.
10    "time"         integer   not null,
11  
12    primary key ("resource", "node")
13  );