mod_storage_sql: Only remove old index if it exists

Avoids an error if the upgrade is performed twice..
This commit is contained in:
Kim Alvefur 2023-06-17 00:22:45 +02:00
parent a45c06b51f
commit 02469e4e8e

View file

@ -859,6 +859,7 @@ local function upgrade_table(engine, params, apply_changes) -- luacheck: ignore
end end
end end
end) end)
if indices["prosody_index"] then
if apply_changes then if apply_changes then
local success = engine:transaction(function () local success = engine:transaction(function ()
return assert(engine:execute([[DROP INDEX "prosody_index";]])); return assert(engine:execute([[DROP INDEX "prosody_index";]]));
@ -868,7 +869,8 @@ local function upgrade_table(engine, params, apply_changes) -- luacheck: ignore
return false; return false;
end end
else else
changes = changes or indices["prosody_index"]; changes = true;
end
end end
end end
return changes; return changes;