Fix index in invites_table.go (#770)

This PR fixes a possible typo in an index created in invites_table.go.

Signed-off-by: Alex Chen minecnly@gmail.com
main
Alex Chen 2019-07-31 21:36:21 +08:00 committed by Andrew Morgan
parent 3e1abe9ad3
commit 92db6cd0ea
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ CREATE INDEX IF NOT EXISTS syncapi_invites_target_user_id_idx
-- For deleting old invites
CREATE INDEX IF NOT EXISTS syncapi_invites_event_id_idx
ON syncapi_invite_events(target_user_id, id);
ON syncapi_invite_events (event_id);
`
const insertInviteEventSQL = "" +