From 8ca4d94d94e5007f9b41af646a8de3d268876331 Mon Sep 17 00:00:00 2001 From: plegall Date: Thu, 3 Feb 2011 21:59:51 +0000 Subject: 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 --- install/db/85-database.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'install/db/85-database.php') diff --git a/install/db/85-database.php b/install/db/85-database.php index e3bb4b82e..1947db537 100644 --- a/install/db/85-database.php +++ b/install/db/85-database.php @@ -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" ; -?> \ No newline at end of file +?> -- cgit v1.2.3