Remove unsigned
This commit is contained in:
parent
84e1cacea4
commit
b0f71db3ff
|
@ -18,8 +18,8 @@ CREATE TABLE IF NOT EXISTS new_server_keys_json (
|
||||||
server_name TEXT NOT NULL, -- Server name.
|
server_name TEXT NOT NULL, -- Server name.
|
||||||
key_id TEXT NOT NULL, -- Requested key id.
|
key_id TEXT NOT NULL, -- Requested key id.
|
||||||
from_server TEXT NOT NULL, -- Which server the keys were fetched from.
|
from_server TEXT NOT NULL, -- Which server the keys were fetched from.
|
||||||
ts_added_ms BIGINT UNSIGNED NOT NULL, -- When the keys were fetched
|
ts_added_ms BIGINT NOT NULL, -- When the keys were fetched
|
||||||
ts_valid_until_ms BIGINT UNSIGNED NOT NULL, -- When this version of the keys exipires.
|
ts_valid_until_ms BIGINT NOT NULL, -- When this version of the keys exipires.
|
||||||
key_json bytea NOT NULL, -- JSON certificate for the remote server.
|
key_json bytea NOT NULL, -- JSON certificate for the remote server.
|
||||||
CONSTRAINT uniqueness UNIQUE (server_name, key_id, from_server)
|
CONSTRAINT uniqueness UNIQUE (server_name, key_id, from_server)
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in New Issue