diff options
author | Kim Alvefur <zash@zash.se> | 2017-12-12 01:40:09 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-12-12 01:40:09 +0100 |
commit | 98e2e58ff68f7be72a507e7176e47d9c5b1927c4 (patch) | |
tree | 606980a88015417512cc19a531f2589e7f924612 /plugins/mod_storage_sql.lua | |
parent | acc624e5f59d91f6dba1b077746019b11ebe4005 (diff) | |
download | prosody-98e2e58ff68f7be72a507e7176e47d9c5b1927c4.tar.gz prosody-98e2e58ff68f7be72a507e7176e47d9c5b1927c4.zip |
mod_storage_sql: Index over contact and timestamp (happy now Ge0rg?)
Diffstat (limited to 'plugins/mod_storage_sql.lua')
-rw-r--r-- | plugins/mod_storage_sql.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_storage_sql.lua b/plugins/mod_storage_sql.lua index e25cb5c6..13c961f8 100644 --- a/plugins/mod_storage_sql.lua +++ b/plugins/mod_storage_sql.lua @@ -452,7 +452,7 @@ local function create_table(engine, name) -- luacheck: ignore 431/engine Column { name="type", type="TEXT", nullable=false }; Column { name="value", type="MEDIUMTEXT", nullable=false }; Index { name="prosodyarchive_index", unique = true, "host", "user", "store", "key" }; - Index { name="prosodyarchive_with", "host", "user", "store", "with" }; + Index { name="prosodyarchive_with_when", "host", "user", "store", "with", "when" }; Index { name="prosodyarchive_when", "host", "user", "store", "when" }; }; engine:transaction(function() |