aboutsummaryrefslogtreecommitdiff
path: root/docs/rpki-db-schema.sql
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2008-04-08 23:42:57 +0000
committerRob Austein <sra@hactrn.net>2008-04-08 23:42:57 +0000
commit37f2c9909e0ed0582e235f179bc13183367580cb (patch)
tree6971ad1c3b7904c639facaeee9a3f5c253a7a009 /docs/rpki-db-schema.sql
parent435854c848c3ddc9eef2c11e9a582df87dfab901 (diff)
Oops, missed this in previous checkin
svn path=/docs/left-right-xml; revision=1638
Diffstat (limited to 'docs/rpki-db-schema.sql')
-rw-r--r--docs/rpki-db-schema.sql4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/rpki-db-schema.sql b/docs/rpki-db-schema.sql
index 25fe77a8..15e4c874 100644
--- a/docs/rpki-db-schema.sql
+++ b/docs/rpki-db-schema.sql
@@ -38,9 +38,9 @@ DROP TABLE IF EXISTS bsc;
CREATE TABLE bsc (
bsc_id SERIAL NOT NULL,
private_key_id LONGBLOB,
- self_id BIGINT unsigned NOT NULL,
- public_key LONGBLOB,
+ pkcs10_request LONGBLOB,
hash_alg ENUM ('sha256'),
+ self_id BIGINT unsigned NOT NULL,
PRIMARY KEY (bsc_id),
FOREIGN KEY (self_id) REFERENCES self
);