diff options
author | plegall <plg@piwigo.org> | 2011-02-03 21:59:51 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2011-02-03 21:59:51 +0000 |
commit | 8ca4d94d94e5007f9b41af646a8de3d268876331 (patch) | |
tree | c0fa1e9948ca6f6ef38d3af1c1e9f4fd71dba42d /install/db/90-database.php | |
parent | a201d100437fd2d16f582bbbe269779f047a2723 (diff) |
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
Diffstat (limited to 'install/db/90-database.php')
-rw-r--r-- | install/db/90-database.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/install/db/90-database.php b/install/db/90-database.php index 492300218..c908c4fd5 100644 --- a/install/db/90-database.php +++ b/install/db/90-database.php @@ -34,7 +34,7 @@ CREATE TABLE ".PREFIX_TABLE."languages ( `version` varchar(64) NOT NULL default '0', `name` varchar(64) default NULL, PRIMARY KEY (`id`) -)"; +) ENGINE=MyISAM"; if (DB_CHARSET == 'utf8') { @@ -59,4 +59,4 @@ echo . $upgrade_description ."\n" ; -?>
\ No newline at end of file +?> |