diff options
author | Erik Johnston <erik@matrix.org> | 2015-03-19 15:12:05 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2015-03-19 15:12:05 +0000 |
commit | 58ed393235381b37182212547af7d65e2f6fa384 (patch) | |
tree | 3336dd013cc644d41135fb08f30de4656b795200 /synapse/storage | |
parent | Fix up schemas to work with mariadb (diff) | |
download | synapse-58ed393235381b37182212547af7d65e2f6fa384.tar.xz |
Remove redundant key
Diffstat (limited to 'synapse/storage')
-rw-r--r-- | synapse/storage/schema/full_schemas/11/im.sql | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/synapse/storage/schema/full_schemas/11/im.sql b/synapse/storage/schema/full_schemas/11/im.sql index d58106def8..9849e969be 100644 --- a/synapse/storage/schema/full_schemas/11/im.sql +++ b/synapse/storage/schema/full_schemas/11/im.sql @@ -27,7 +27,6 @@ CREATE TABLE IF NOT EXISTS events( UNIQUE (event_id) ) ENGINE = INNODB; -CREATE INDEX IF NOT EXISTS events_event_id ON events (event_id); CREATE INDEX IF NOT EXISTS events_stream_ordering ON events (stream_ordering); CREATE INDEX IF NOT EXISTS events_topological_ordering ON events (topological_ordering); CREATE INDEX IF NOT EXISTS events_room_id ON events (room_id); |