mirror of
https://github.com/bjc/prosody.git
synced 2025-04-06 22:57:38 +03:00
mod_storage_sql: Quote some field names
This commit is contained in:
parent
b3cd19063f
commit
a03638bd16
1 changed files with 2 additions and 2 deletions
|
@ -462,12 +462,12 @@ local function upgrade_table(engine, params, apply_changes) -- luacheck: ignore
|
|||
local changes = false;
|
||||
if params.driver == "MySQL" then
|
||||
local success,err = engine:transaction(function()
|
||||
local result = engine:execute("SHOW COLUMNS FROM prosody WHERE Field='value' and Type='text'");
|
||||
local result = engine:execute("SHOW COLUMNS FROM \"prosody\" WHERE \"Field\"='value' and \"Type\"='text'");
|
||||
if result:rowcount() > 0 then
|
||||
changes = true;
|
||||
if apply_changes then
|
||||
module:log("info", "Upgrading database schema...");
|
||||
engine:execute("ALTER TABLE prosody MODIFY COLUMN \"value\" MEDIUMTEXT");
|
||||
engine:execute("ALTER TABLE \"prosody\" MODIFY COLUMN \"value\" MEDIUMTEXT");
|
||||
module:log("info", "Database table automatically upgraded");
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue