aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_storage_sql.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2020-03-22 21:13:09 +0100
committerKim Alvefur <zash@zash.se>2020-03-22 21:13:09 +0100
commit1724e9a271649aad3ed5559b61c24d656a7e5073 (patch)
tree34537ef426e6f55fa507b93b2479506d3865da93 /plugins/mod_storage_sql.lua
parentde1efbb3dfb4a103abbae1040261751ef7e4366a (diff)
parent65a654d7266a768a3af6863eb1cc0f60c6ea8d77 (diff)
downloadprosody-1724e9a271649aad3ed5559b61c24d656a7e5073.tar.gz
prosody-1724e9a271649aad3ed5559b61c24d656a7e5073.zip
Merge 0.11->trunk
Diffstat (limited to 'plugins/mod_storage_sql.lua')
-rw-r--r--plugins/mod_storage_sql.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/mod_storage_sql.lua b/plugins/mod_storage_sql.lua
index accfa2df..21556715 100644
--- a/plugins/mod_storage_sql.lua
+++ b/plugins/mod_storage_sql.lua
@@ -649,6 +649,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);