diff options
author | Rob Austein <sra@hactrn.net> | 2007-09-25 20:11:56 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2007-09-25 20:11:56 +0000 |
commit | 36677da9db92362b91a1320c0dd37baae26776a7 (patch) | |
tree | ff70986c1256585b42af1d29af9472874af6c7a1 /docs/rpki-db-schema.sql | |
parent | 16058160b850ec9b4db3f8291a38728f816a4dd1 (diff) |
Shorten a few tediously long identifiers
svn path=/docs/rpki-db-schema.pdf; revision=1031
Diffstat (limited to 'docs/rpki-db-schema.sql')
-rw-r--r-- | docs/rpki-db-schema.sql | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/docs/rpki-db-schema.sql b/docs/rpki-db-schema.sql index aef7608c..d9af186d 100644 --- a/docs/rpki-db-schema.sql +++ b/docs/rpki-db-schema.sql @@ -86,19 +86,19 @@ CREATE TABLE ca ( DROP TABLE IF EXISTS ca_detail; CREATE TABLE ca_detail ( - ca_detail_id SERIAL NOT NULL, - public_key LONGBLOB, - private_key_handle LONGBLOB, - latest_crl LONGBLOB, - latest_ca_cert_over_public_key LONGBLOB, - manifest_ee_private_key_handle LONGBLOB, - manifest_ee_public_key LONGBLOB, - latest_manifest_ee_cert LONGBLOB, - latest_manifest LONGBLOB, - state ENUM ('active', 'deprecated', 'pending') NOT NULL, - ca_id BIGINT unsigned NOT NULL, - PRIMARY KEY (ca_detail_id), - FOREIGN KEY (ca_id) REFERENCES ca + ca_detail_id SERIAL NOT NULL, + public_key LONGBLOB, + private_key_id LONGBLOB, + latest_crl LONGBLOB, + latest_ca_cert LONGBLOB, + manifest_private_key_id LONGBLOB, + manifest_public_key LONGBLOB, + latest_manifest_cert LONGBLOB, + latest_manifest LONGBLOB, + state ENUM ('active', 'deprecated', 'pending') NOT NULL, + ca_id BIGINT unsigned NOT NULL, + PRIMARY KEY (ca_detail_id), + FOREIGN KEY (ca_id) REFERENCES ca ); DROP TABLE IF EXISTS child; |