0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-10-03 06:59:01 +02:00

Rename unique constraint

This commit is contained in:
Mark Haines 2015-05-08 16:01:55 +01:00
parent b0f71db3ff
commit 9d36eb4eab

View file

@ -21,7 +21,7 @@ CREATE TABLE IF NOT EXISTS new_server_keys_json (
ts_added_ms BIGINT NOT NULL, -- When the keys were fetched
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.
CONSTRAINT uniqueness UNIQUE (server_name, key_id, from_server)
CONSTRAINT server_keys_json_uniqueness UNIQUE (server_name, key_id, from_server)
);
INSERT INTO new_server_keys_json