diff options
author | Rob Stradling <rob@comodo.com> | 2017-04-07 14:55:23 +0100 |
---|---|---|
committer | Rob Stradling <rob@comodo.com> | 2017-04-07 14:55:23 +0100 |
commit | f6d2fb9842790157b51a33fd36c796d8db247707 (patch) | |
tree | 6e1b011bfcb9e6286668a7786ec318020bb8d1c5 /create_schema.sql | |
parent | b25ec21281929fffbc2ddbb01b1a12df0f63b5c9 (diff) | |
download | certwatch_db-f6d2fb9842790157b51a33fd36c796d8db247707.zip certwatch_db-f6d2fb9842790157b51a33fd36c796d8db247707.tar.gz certwatch_db-f6d2fb9842790157b51a33fd36c796d8db247707.tar.bz2 |
Handle CA Owners for roots no longer in the Mozilla root program. Add script that updates the Mozilla cert validation telemetry data.
Diffstat (limited to 'create_schema.sql')
-rw-r--r-- | create_schema.sql | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/create_schema.sql b/create_schema.sql index 71288a2..990f3c8 100644 --- a/create_schema.sql +++ b/create_schema.sql @@ -602,6 +602,7 @@ CREATE TABLE mozilla_root_hashes ( CERTIFICATE_SHA256 bytea, BIN_NUMBER smallint, DISPLAY_ORDER smallint, + CA_OWNER text, CONSTRAINT mrh_pk PRIMARY KEY (BIN_NUMBER, CERTIFICATE_SHA256) ); |