Fix typo in table name

This commit is contained in:
Brendan Abolivier 2017-07-31 16:27:49 +01:00
parent fd5fc90cc4
commit 9f1a786f0b
No known key found for this signature in database
GPG key ID: 8EF1500759F70623

View file

@ -38,7 +38,7 @@ CREATE TABLE IF NOT EXISTS account_data_type (
CONSTRAINT account_data_unique UNIQUE (user_id, room_id, type)
);
CREATE UNIQUE INDEX IF NOT EXISTS account_data_id_idx ON account_data(id);
CREATE UNIQUE INDEX IF NOT EXISTS account_data_id_idx ON account_data_type(id);
`
const insertAccountDataSQL = "" +