mirror of
https://mau.dev/maunium/synapse.git
synced 2024-11-19 00:11:47 +01:00
apply changes from review
This commit is contained in:
parent
e57567f994
commit
418813b205
2 changed files with 3 additions and 2 deletions
|
@ -1 +1 @@
|
||||||
Change the index on the `e2e_cross_signing_signatures` table to be non-unique.
|
Fix uploading multiple cross signing signatures for the same user.
|
||||||
|
|
|
@ -40,7 +40,8 @@ CREATE TABLE IF NOT EXISTS e2e_cross_signing_signatures (
|
||||||
signature TEXT NOT NULL
|
signature TEXT NOT NULL
|
||||||
);
|
);
|
||||||
|
|
||||||
CREATE INDEX e2e_cross_signing_signatures2_idx ON e2e_cross_signing_signatures(user_id, target_user_id, target_device_id);
|
-- replaced by the index created in signing_keys_nonunique_signatures.sql
|
||||||
|
-- CREATE UNIQUE INDEX e2e_cross_signing_signatures_idx ON e2e_cross_signing_signatures(user_id, target_user_id, target_device_id);
|
||||||
|
|
||||||
-- stream of user signature updates
|
-- stream of user signature updates
|
||||||
CREATE TABLE IF NOT EXISTS user_signature_stream (
|
CREATE TABLE IF NOT EXISTS user_signature_stream (
|
||||||
|
|
Loading…
Reference in a new issue