mod_storage_sql: Keep prosodyarchive_index unique constraint on non-MySQL DBs

This commit is contained in:
Matthew Wild 2018-10-12 21:59:15 +01:00
parent 0ac9ea3a74
commit 1faf1773a3

View file

@ -496,7 +496,7 @@ local function create_table(engine) -- luacheck: ignore 431/engine
Column { name="with", type="TEXT", nullable=false }; -- related id
Column { name="type", type="TEXT", nullable=false };
Column { name="value", type="MEDIUMTEXT", nullable=false };
Index { name="prosodyarchive_index", "host", "user", "store", "key" };
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" };
};