mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_storage_sql: Only remove old index if it exists
Avoids an error if the upgrade is performed twice..
This commit is contained in:
parent
a45c06b51f
commit
02469e4e8e
1 changed files with 11 additions and 9 deletions
|
@ -859,16 +859,18 @@ local function upgrade_table(engine, params, apply_changes) -- luacheck: ignore
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end)
|
end)
|
||||||
if apply_changes then
|
if indices["prosody_index"] then
|
||||||
local success = engine:transaction(function ()
|
if apply_changes then
|
||||||
return assert(engine:execute([[DROP INDEX "prosody_index";]]));
|
local success = engine:transaction(function ()
|
||||||
end);
|
return assert(engine:execute([[DROP INDEX "prosody_index";]]));
|
||||||
if not success then
|
end);
|
||||||
module:log("error", "Failed to delete obsolete index \"prosody_index\"");
|
if not success then
|
||||||
return false;
|
module:log("error", "Failed to delete obsolete index \"prosody_index\"");
|
||||||
|
return false;
|
||||||
|
end
|
||||||
|
else
|
||||||
|
changes = true;
|
||||||
end
|
end
|
||||||
else
|
|
||||||
changes = changes or indices["prosody_index"];
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
return changes;
|
return changes;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue