mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 14:17:37 +03:00
util.sql: Rewrite MEDIUMTEXT to TEXT for drivers other than MySQL
This commit is contained in:
parent
29988cfa70
commit
1bcfdab54f
1 changed files with 5 additions and 1 deletions
|
@ -260,7 +260,11 @@ end
|
||||||
function engine:_create_table(table)
|
function engine:_create_table(table)
|
||||||
local sql = "CREATE TABLE `"..table.name.."` (";
|
local sql = "CREATE TABLE `"..table.name.."` (";
|
||||||
for i,col in ipairs(table.c) do
|
for i,col in ipairs(table.c) do
|
||||||
sql = sql.."`"..col.name.."` "..col.type;
|
local col_type = col.type;
|
||||||
|
if col_type == "MEDIUMTEXT" and self.params.driver ~= "MySQL" then
|
||||||
|
col_type = "TEXT"; -- MEDIUMTEXT is MySQL-specific
|
||||||
|
end
|
||||||
|
sql = sql.."`"..col.name.."` "..col_type;
|
||||||
if col.nullable == false then sql = sql.." NOT NULL"; end
|
if col.nullable == false then sql = sql.." NOT NULL"; end
|
||||||
if col.primary_key == true then sql = sql.." PRIMARY KEY"; end
|
if col.primary_key == true then sql = sql.." PRIMARY KEY"; end
|
||||||
if col.auto_increment == true then
|
if col.auto_increment == true then
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue