mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
migrator/prosody_sql.lua: Fix for compatibility with non-MySQL databases
This commit is contained in:
parent
67088429be
commit
2c97611fed
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ local function create_table(connection, params)
|
|||
ok, err = assert(stmt:execute());
|
||||
commit_ok, commit_err = assert(connection:commit());
|
||||
end
|
||||
else -- COMPAT: Upgrade tables from 0.8.0
|
||||
elseif params.driver == "MySQL" then -- COMPAT: Upgrade tables from 0.8.0
|
||||
-- Failed to create, but check existing MySQL table here
|
||||
local stmt = connection:prepare("SHOW COLUMNS FROM prosody WHERE Field='value' and Type='text'");
|
||||
local ok = stmt:execute();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue