mod_storage_sql: Add indices that include the with and when columns of archives

This commit is contained in:
Kim Alvefur 2017-11-21 14:46:21 +01:00
parent 0158bad7ad
commit a7693939d4

View file

@ -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);