Remove tab

This commit is contained in:
Brendan Abolivier 2017-08-21 16:06:24 +01:00
parent a515efd360
commit f7f0af8739
No known key found for this signature in database
GPG key ID: 8EF1500759F70623

View file

@ -41,7 +41,7 @@ CREATE UNIQUE INDEX IF NOT EXISTS account_membership_event_id ON account_members
const insertMembershipSQL = ` const insertMembershipSQL = `
INSERT INTO account_memberships(localpart, room_id, event_id) VALUES ($1, $2, $3) INSERT INTO account_memberships(localpart, room_id, event_id) VALUES ($1, $2, $3)
ON CONFLICT (localpart, room_id) DO UPDATE SET event_id = EXCLUDED.event_id ON CONFLICT (localpart, room_id) DO UPDATE SET event_id = EXCLUDED.event_id
` `
const selectMembershipsByLocalpartSQL = "" + const selectMembershipsByLocalpartSQL = "" +