aboutsummaryrefslogtreecommitdiff
path: root/rpki/sql_schemas.py
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2014-07-03 19:21:31 +0000
committerRob Austein <sra@hactrn.net>2014-07-03 19:21:31 +0000
commit1fde024c07a0dc681a534a4197a18226737ebd19 (patch)
tree872843c4c0ed192e9ff824f8e0969cc295b915e8 /rpki/sql_schemas.py
parentcd264895b35e5345dbbe14539614bb6e23bddc0e (diff)
Get rid of the <config/> element of the publication-control protocol, it's a historical relic.
Update example PDUs for publication and publication-control protocols. svn path=/branches/tk705/; revision=5883
Diffstat (limited to 'rpki/sql_schemas.py')
-rw-r--r--rpki/sql_schemas.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/rpki/sql_schemas.py b/rpki/sql_schemas.py
index d9ccb3e4..b85c3dd9 100644
--- a/rpki/sql_schemas.py
+++ b/rpki/sql_schemas.py
@@ -266,17 +266,9 @@ pubd = '''-- $Id: pubd.sql 5881 2014-07-03 16:55:02Z sra $
-- SQL objects needed by pubd.py.
--- The config table is weird because it only has one row.
-
DROP TABLE IF EXISTS client;
DROP TABLE IF EXISTS config;
-CREATE TABLE config (
- config_id SERIAL NOT NULL,
- bpki_crl LONGBLOB,
- PRIMARY KEY (config_id)
-) ENGINE=InnoDB;
-
CREATE TABLE client (
client_id SERIAL NOT NULL,
client_handle VARCHAR(255) NOT NULL,