diff options
author | Rob Austein <sra@hactrn.net> | 2007-10-01 22:56:39 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2007-10-01 22:56:39 +0000 |
commit | a6748e3876136dc252061a09e16c828eb45c1842 (patch) | |
tree | 20b4646a2caa982e9c69894d8d5c5c178e06ddf2 /docs | |
parent | 20f735ac7884111b47bd8ba974ed3e8fd1242e89 (diff) |
Make rpki.resource_set.resource_set.from_sql() into a class method.
Rework IRDB code.
svn path=/docs/rpki-db-schema.pdf; revision=1068
Diffstat (limited to 'docs')
-rw-r--r-- | docs/rpki-db-schema.pdf | bin | 5246 -> 5225 bytes | |||
-rw-r--r-- | docs/sample-irdb.pdf | bin | 2143 -> 2233 bytes | |||
-rw-r--r-- | docs/sample-irdb.sql | 2 |
3 files changed, 2 insertions, 0 deletions
diff --git a/docs/rpki-db-schema.pdf b/docs/rpki-db-schema.pdf Binary files differindex af9f5616..968b5eae 100644 --- a/docs/rpki-db-schema.pdf +++ b/docs/rpki-db-schema.pdf diff --git a/docs/sample-irdb.pdf b/docs/sample-irdb.pdf Binary files differindex 883cb20a..a947f94e 100644 --- a/docs/sample-irdb.pdf +++ b/docs/sample-irdb.pdf diff --git a/docs/sample-irdb.sql b/docs/sample-irdb.sql index abfba9e5..81b16ddc 100644 --- a/docs/sample-irdb.sql +++ b/docs/sample-irdb.sql @@ -6,6 +6,8 @@ CREATE TABLE registrant ( registrant_id SERIAL NOT NULL, IRBE_mapped_id TEXT, subject_name TEXT, + rpki_self_id BIGINT unsigned, + rpki_child_id BIGINT unsigned, valid_until DATETIME NOT NULL, PRIMARY KEY (registrant_id) ); |