Skip to content
Snippets Groups Projects
Commit 8abdd7b5 authored by Erik Johnston's avatar Erik Johnston
Browse files

Fix up indices for users_who_share_rooms

parent ff13c5e7
No related branches found
No related tags found
No related merge requests found
......@@ -25,7 +25,8 @@ CREATE TABLE users_who_share_rooms (
CREATE UNIQUE INDEX users_who_share_rooms_u_idx ON users_who_share_rooms(user_id, other_user_id);
CREATE INDEX users_who_share_rooms_r_idx ON users_who_share_rooms(room_id, user_id);
CREATE INDEX users_who_share_rooms_r_idx ON users_who_share_rooms(room_id);
CREATE INDEX users_who_share_rooms_o_idx ON users_who_share_rooms(other_user_id);
-- Make sure that we popualte the table initially
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment