diff options
author | Rob Austein <sra@hactrn.net> | 2014-07-17 21:57:36 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2014-07-17 21:57:36 +0000 |
commit | e2b9b042765d3e42bf9166d3f7980949a38a70b9 (patch) | |
tree | a3bd7edf4f6967865d1e2c3ff9bad1c2be377a93 /schemas | |
parent | 8436607494189c48bb26a507ede9cb8b7a9c25d9 (diff) |
Publication code mostly just deals with DER and Base64, so defer ASN.1
decode until something asks to look at the object.
svn path=/branches/tk705/; revision=5901
Diffstat (limited to 'schemas')
-rw-r--r-- | schemas/sql/pubd.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/schemas/sql/pubd.sql b/schemas/sql/pubd.sql index 1264b82a..de857bf4 100644 --- a/schemas/sql/pubd.sql +++ b/schemas/sql/pubd.sql @@ -68,8 +68,8 @@ CREATE TABLE delta ( CREATE TABLE object ( object_id SERIAL NOT NULL, uri VARCHAR(255) NOT NULL, + der LONGBLOB NOT NULL, hash CHAR(64) NOT NULL, - payload LONGBLOB NOT NULL, client_id BIGINT UNSIGNED NOT NULL, session_id BIGINT UNSIGNED NOT NULL, PRIMARY KEY (object_id), |