diff options
author | Rob Austein <sra@hactrn.net> | 2007-08-28 16:37:25 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2007-08-28 16:37:25 +0000 |
commit | 41867896dd2514c7e8c4a1ed30522478815cb13f (patch) | |
tree | 0b58b084e81da63654b59371f9bb3285ece0b4af /docs/rpki-db-schema.sql | |
parent | 0e1dbd520147538a2fa9625cebb9524769c3f25f (diff) |
Fix from Tim for missing certificate attribute.
svn path=/docs/rpki-db-schema.pdf; revision=920
Diffstat (limited to 'docs/rpki-db-schema.sql')
-rw-r--r-- | docs/rpki-db-schema.sql | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/rpki-db-schema.sql b/docs/rpki-db-schema.sql index b4b6efe3..8fdae410 100644 --- a/docs/rpki-db-schema.sql +++ b/docs/rpki-db-schema.sql @@ -86,6 +86,7 @@ CREATE TABLE child ( CREATE TABLE child_ca_detail_link (
child_id BIGINT unsigned NOT NULL,
ca_detail_id BIGINT unsigned NOT NULL,
+ cert LONGBLOB NOT NULL,
PRIMARY KEY (child_id, ca_detail_id)
);
|