diff options
author | Erik Johnston <erik@matrix.org> | 2015-04-10 18:46:09 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2015-04-10 18:46:09 +0100 |
commit | 4103b1c4709b374785ffb7eca75c8f338218bc17 (patch) | |
tree | 419f1aeb4e1793a9a255138db9ba5d68effa5bee /synapse/storage/schema/full_schemas | |
parent | Use LONGBLOB and TEXT for arbitary length rows (diff) | |
download | synapse-4103b1c4709b374785ffb7eca75c8f338218bc17.tar.xz |
DROP indexes before recreating them
Diffstat (limited to 'synapse/storage/schema/full_schemas')
-rw-r--r-- | synapse/storage/schema/full_schemas/16/state.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/schema/full_schemas/16/state.sql b/synapse/storage/schema/full_schemas/16/state.sql index 737c3e35c7..8d6b94a616 100644 --- a/synapse/storage/schema/full_schemas/16/state.sql +++ b/synapse/storage/schema/full_schemas/16/state.sql @@ -37,4 +37,4 @@ CREATE INDEX IF NOT EXISTS state_groups_id ON state_groups(id); CREATE INDEX IF NOT EXISTS state_groups_state_id ON state_groups_state(state_group); CREATE INDEX IF NOT EXISTS state_groups_state_tuple ON state_groups_state(room_id, type, state_key); -CREATE INDEX IF NOT EXISTS event_to_state_groups_id ON event_to_state_groups(event_id); \ No newline at end of file +CREATE INDEX IF NOT EXISTS event_to_state_groups_id ON event_to_state_groups(event_id); |