diff options
author | Rob Austein <sra@hactrn.net> | 2008-06-02 23:43:01 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2008-06-02 23:43:01 +0000 |
commit | 7fe2be97aa63bff93e7afca074d42e169a8b92f5 (patch) | |
tree | 37960080bd1fdc7b0de75d9c52549a41b13d7897 /rpkid/pubd.sql | |
parent | fec873c92b1fb4445d30dd03592a0b8935a460fa (diff) |
Add BPKI CRL to pubd's SQL database, and clean up a lot of redundant
SAX code.
svn path=/rpkid/irbe-cli.py; revision=1835
Diffstat (limited to 'rpkid/pubd.sql')
-rw-r--r-- | rpkid/pubd.sql | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/rpkid/pubd.sql b/rpkid/pubd.sql index d8a9938c..2e9e235d 100644 --- a/rpkid/pubd.sql +++ b/rpkid/pubd.sql @@ -16,6 +16,18 @@ -- SQL objects needed by pubd.py. +-- The config table is weird because we're really only using it +-- to store one BPKI CRL, but putting this here lets us use a lot of +-- existing machinery and the alternatives are whacky in other ways. + +DROP TABLE IF EXISTS config; + +CREATE TABLE config ( + config_id SERIAL NOT NULL, + bpki_crl LONGBLOB, + PRIMARY KEY (config_id) +); + DROP TABLE IF EXISTS client; CREATE TABLE client ( |