From 0a3eb9b0fd8c10f3e5aff45111a8d208f0cdcf33 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A1bor=20Hojtsy?= Date: Wed, 30 Jan 2008 14:34:29 +0000 Subject: [PATCH] #215848 by simonc: SMALLTEXT is not a valid MySQL type, TINYTEXT is there instead --- includes/database.mysql-common.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/database.mysql-common.inc b/includes/database.mysql-common.inc index 2fd0a4857ef..8e816a133fc 100644 --- a/includes/database.mysql-common.inc +++ b/includes/database.mysql-common.inc @@ -201,8 +201,8 @@ function db_type_map() { 'varchar:normal' => 'VARCHAR', 'char:normal' => 'CHAR', - 'text:tiny' => 'SMALLTEXT', - 'text:small' => 'SMALLTEXT', + 'text:tiny' => 'TINYTEXT', + 'text:small' => 'TINYTEXT', 'text:medium' => 'MEDIUMTEXT', 'text:big' => 'LONGTEXT', 'text:normal' => 'TEXT',