diff options
author | Rob Austein <sra@hactrn.net> | 2010-07-15 15:30:59 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2010-07-15 15:30:59 +0000 |
commit | 29f1e58b7196f3b2f87fbb9f84a3a5fb0f930948 (patch) | |
tree | 0f0421be241fa98f4a7eb628289e79a48aae473e | |
parent | 28dc944be126663865cedd016a8ae32db44aaeaa (diff) |
I can think of no sane reason to allow roa.roa or roa.cert to be NULL.
svn path=/rpkid/rpkid.sql; revision=3404
-rw-r--r-- | rpkid/rpkid.sql | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rpkid/rpkid.sql b/rpkid/rpkid.sql index ad02f278..8192aaa7 100644 --- a/rpkid/rpkid.sql +++ b/rpkid/rpkid.sql @@ -190,8 +190,8 @@ CREATE TABLE revoked_cert ( CREATE TABLE roa ( roa_id SERIAL NOT NULL, asn BIGINT UNSIGNED, - cert LONGBLOB, - roa LONGBLOB, + cert LONGBLOB NOT NULL, + roa LONGBLOB NOT NULL, published DATETIME, self_id BIGINT UNSIGNED NOT NULL, ca_detail_id BIGINT UNSIGNED NOT NULL, |