blob: a469057cb4415969998845edf41f830b9ad83702 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
// Automatically generated from irdbd.sql
digraph test {
edge [arrowtail=none, arrowhead=crow];
graph [ratio=fill, overlap=false, bgcolor=white];
node [label="\N", fillcolor=white, shape=record, style=filled];
registrant [label="registrant|{registrant_id\ SERIAL\ \[PK\]|IRBE_mapped_id\ TEXT|subject_name\ TEXT|rpki_self_id\ BIGINT|rpki_child_id\ BIGINT|valid_until\ DATETIME}"];
asn [label="asn|{asn_id\ SERIAL\ \[PK\]|start_as\ BIGINT|end_as\ BIGINT|registrant_id\ BIGINT\ \[FK\]}"];
net [label="net|{net_id\ SERIAL\ \[PK\]|start_ip\ VARCHAR|end_ip\ VARCHAR|version\ TINYINT|registrant_id\ BIGINT\ \[FK\]}"];
registrant -> asn;
registrant -> net;
}
|