diff options
author | Kim Alvefur <zash@zash.se> | 2017-11-21 14:46:21 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-11-21 14:46:21 +0100 |
commit | fa77fa5b164bb7d4fdfbe85ccc9b48ad1f95b025 (patch) | |
tree | f51a1b39c0c31f340a04b84c8b7c2b24f518f277 | |
parent | 9690a86204e8f78d9ae7d441874c0a571a9ee45a (diff) | |
download | prosody-fa77fa5b164bb7d4fdfbe85ccc9b48ad1f95b025.tar.gz prosody-fa77fa5b164bb7d4fdfbe85ccc9b48ad1f95b025.zip |
mod_storage_sql: Add indices that include the with and when columns of archives
-rw-r--r-- | plugins/mod_storage_sql.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/mod_storage_sql.lua b/plugins/mod_storage_sql.lua index c729c66a..e25cb5c6 100644 --- a/plugins/mod_storage_sql.lua +++ b/plugins/mod_storage_sql.lua @@ -452,6 +452,8 @@ 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_when", "host", "user", "store", "when" }; }; engine:transaction(function() ProsodyArchiveTable:create(engine); |