1
0
Fork 0
mirror of https://github.com/element-hq/synapse.git synced 2025-03-06 16:06:52 +00:00

Oops, update the contraint too

This commit is contained in:
David Baker 2015-04-29 16:58:42 +01:00
parent 61cd5d9045
commit f8c30faf25

View file

@ -4,6 +4,6 @@ CREATE TABLE user_threepids (
address TEXT NOT NULL,
validated_at BIGINT NOT NULL,
added_at BIGINT NOT NULL,
CONSTRAINT user_medium_address UNIQUE (user, medium, address)
CONSTRAINT user_medium_address UNIQUE (user_id, medium, address)
);
CREATE INDEX user_threepids_user_id ON user_threepids(user_id);