diff options
author | Rob Austein <sra@hactrn.net> | 2009-09-18 04:42:29 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2009-09-18 04:42:29 +0000 |
commit | dad110e047c0216f380bb1f1c974b4db5233443c (patch) | |
tree | 9e3025497efcffed72b93e764f96c444f578f037 /rpkid/rpkid.sql | |
parent | 0dafad069cbddd52d4640687ac66643841887a6c (diff) |
Missing constraint
svn path=/rpkid/rpkid.sql; revision=2766
Diffstat (limited to 'rpkid/rpkid.sql')
-rw-r--r-- | rpkid/rpkid.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rpkid/rpkid.sql b/rpkid/rpkid.sql index cf5aaee2..5671a9c7 100644 --- a/rpkid/rpkid.sql +++ b/rpkid/rpkid.sql @@ -165,7 +165,7 @@ CREATE TABLE roa ( cert LONGBLOB, roa LONGBLOB, self_id BIGINT UNSIGNED NOT NULL, - ca_detail_id BIGINT UNSIGNED, + ca_detail_id BIGINT UNSIGNED NOT NULL, PRIMARY KEY (roa_id), FOREIGN KEY (self_id) REFERENCES self (self_id), FOREIGN KEY (ca_detail_id) REFERENCES ca_detail (ca_detail_id) |