MatrixSynapse/synapse/storage/schema/full_schemas/11/keys.sql

32 lines
1.3 KiB
MySQL
Raw Normal View History

2015-03-04 14:34:38 +01:00
/* Copyright 2014, 2015 OpenMarket Ltd
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
CREATE TABLE IF NOT EXISTS server_tls_certificates(
2015-04-02 11:06:22 +02:00
server_name VARCHAR(150), -- Server name.
fingerprint VARCHAR(150), -- Certificate fingerprint.
from_server VARCHAR(150), -- Which key server the certificate was fetched from.
2015-03-19 14:42:39 +01:00
ts_added_ms BIGINT, -- When the certifcate was added.
2015-03-04 14:34:38 +01:00
tls_certificate BLOB, -- DER encoded x509 certificate.
2015-03-18 12:18:49 +01:00
UNIQUE (server_name, fingerprint)
) ;
2015-03-04 14:34:38 +01:00
CREATE TABLE IF NOT EXISTS server_signature_keys(
2015-04-02 11:06:22 +02:00
server_name VARCHAR(150), -- Server name.
key_id VARCHAR(150), -- Key version.
from_server VARCHAR(150), -- Which key server the key was fetched form.
2015-03-19 14:42:39 +01:00
ts_added_ms BIGINT, -- When the key was added.
2015-03-04 14:34:38 +01:00
verify_key BLOB, -- NACL verification key.
2015-03-18 12:18:49 +01:00
UNIQUE (server_name, key_id)
) ;