mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_storage_sql: Drop legacy index without confirmation to ease upgrades
Deleting one index should be safe enough to do without requiring a explicitly upgrading during downtime. People had trouble with this.
This commit is contained in:
parent
6959547703
commit
b9d4cc24df
1 changed files with 6 additions and 10 deletions
|
@ -885,7 +885,6 @@ local function upgrade_table(engine, params, apply_changes) -- luacheck: ignore
|
||||||
end
|
end
|
||||||
end)
|
end)
|
||||||
if indices["prosody_index"] then
|
if indices["prosody_index"] 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";]]));
|
||||||
end);
|
end);
|
||||||
|
@ -893,9 +892,6 @@ local function upgrade_table(engine, params, apply_changes) -- luacheck: ignore
|
||||||
module:log("error", "Failed to delete obsolete index \"prosody_index\"");
|
module:log("error", "Failed to delete obsolete index \"prosody_index\"");
|
||||||
return false;
|
return false;
|
||||||
end
|
end
|
||||||
else
|
|
||||||
changes = true;
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
return changes;
|
return changes;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue