mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_storage_sql: Add index covering sort_id to improve performance (fixes #1505)
This commit is contained in:
parent
4a257f3ce6
commit
a94da35eb0
1 changed files with 1 additions and 0 deletions
|
@ -500,6 +500,7 @@ local function create_table(engine) -- luacheck: ignore 431/engine
|
|||
Index { name="prosodyarchive_index", unique = engine.params.driver ~= "MySQL", "host", "user", "store", "key" };
|
||||
Index { name="prosodyarchive_with_when", "host", "user", "store", "with", "when" };
|
||||
Index { name="prosodyarchive_when", "host", "user", "store", "when" };
|
||||
Index { name="prosodyarchive_sort", "host", "user", "store", "sort_id" };
|
||||
};
|
||||
engine:transaction(function()
|
||||
ProsodyArchiveTable:create(engine);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue