CVS update: /cowiki/htdocs/setup/class/task/migrator/
[email protected] 14 Jul 2005 03:28:55 -0000
| Newsgroups | gmane.comp.php.cowiki.cvs |
|---|---|
| Message-ID | <[email protected]> |
User: dgorski Date: 2005/07/13 20:28:55 Modified: cowiki/htdocs/setup/class/task/migrator/class.Migrator_20050513_02.php Log: Do not convert to InnoDB (allow MyISAM, dangerous) File Changes: Directory: /cowiki/htdocs/setup/class/task/migrator/ ==================================================== File [changed]: class.Migrator_20050513_02.php Url: http://cowiki.tigris.org/source/browse/cowiki/htdocs/setup/class/task/migrator/class.Migrator_20050513_02.php?r1=1.1&r2=1.2 Delta lines: +6 -3 ------------------- --- class.Migrator_20050513_02.php 16 May 2005 22:25:23 -0000 1.1 +++ class.Migrator_20050513_02.php 14 Jul 2005 03:28:53 -0000 1.2 @@ -2,7 +2,7 @@ /** * - * $Id: class.Migrator_20050513_02.php,v 1.1 2005/05/16 22:25:23 dgorski Exp $ + * $Id: class.Migrator_20050513_02.php,v 1.2 2005/07/14 03:28:53 dgorski Exp $ * * This file is part of coWiki. coWiki is free software under the terms of * the GNU General Public License (GPL). Read the LICENSE file. If you did @@ -17,7 +17,7 @@ * @author Daniel T. Gorski, <[email protected]> * @copyright (C) Daniel T. Gorski, {@link http://www.develnet.org} * @license http://www.gnu.org/licenses/gpl.html - * @version $Revision: 1.1 $ + * @version $Revision: 1.2 $ * */ @@ -66,9 +66,12 @@ // handle the requested connector scheme. If not, this Migrator is // "not required". switch ($UriInfo->get('scheme')) { + +/* Disabled. See ChangeLog entry 2005-07-13 case 'mysql': - case 'mysql+innodb': case 'mysqli': +*/ + case 'mysql+innodb': case 'mysqli+innodb': break;