util.sql: Rewrite MEDIUMTEXT to TEXT for drivers other than MySQL

This commit is contained in:
Kim Alvefur 2013-10-30 10:24:35 +01:00
parent 29988cfa70
commit 1bcfdab54f

View file

@ -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