mirror of
https://github.com/matrix-org/dendrite.git
synced 2025-12-12 09:23:09 -06:00
Fix SQL
This commit is contained in:
parent
6328900d06
commit
f4912c9ed1
|
|
@ -47,7 +47,7 @@ CREATE TABLE IF NOT EXISTS roomserver_invites (
|
||||||
invite_event_json TEXT NOT NULL
|
invite_event_json TEXT NOT NULL
|
||||||
);
|
);
|
||||||
|
|
||||||
CREATE INDEX IF NOT EXISTS roomserver_invites_active_idx ON invites (target_nid, room_nid)
|
CREATE INDEX IF NOT EXISTS roomserver_invites_active_idx ON roomserver_invites (target_nid, room_nid)
|
||||||
WHERE NOT retired;
|
WHERE NOT retired;
|
||||||
`
|
`
|
||||||
const insertInviteEventSQL = "" +
|
const insertInviteEventSQL = "" +
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue