bug 2155 fixed: for MySQL, use the "ENGINE=MyISAM" syntax instead of the

deprecated "TYPE=MyISAM", so that SQL creation table statements complies
with MySQL 5.5


git-svn-id: http://piwigo.org/svn/trunk@9086 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
plegall
2011-02-03 21:59:51 +00:00
parent a201d10043
commit 8ca4d94d94
6 changed files with 47 additions and 47 deletions
+2 -2
View File
@@ -34,7 +34,7 @@ CREATE TABLE ".PREFIX_TABLE."themes (
`version` varchar(64) NOT NULL default '0',
`name` varchar(64) default NULL,
PRIMARY KEY (`id`)
)";
) ENGINE=MyISAM";
if (DB_CHARSET == 'utf8')
{
@@ -48,4 +48,4 @@ echo
. $upgrade_description
."\n"
;
?>
?>