Ignore:
Timestamp:
Feb 3, 2011, 10:59:51 PM (13 years ago)
Author:
plg
Message:

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/install/upgrade_1.6.2.php

    r8728 r9086  
    7878  PRIMARY KEY  (`id`),
    7979  KEY `history_i1` (`summarized`)
    80 ) TYPE=MyISAM
     80) ENGINE=MyISAM
    8181;",
    8282
     
    136136  `nb_pages` int(11) default NULL,
    137137  PRIMARY KEY  (`id`)
    138 ) TYPE=MyISAM
     138) ENGINE=MyISAM
    139139;",
    140140
     
    147147  `hit` int(10) unsigned NOT NULL default '0',
    148148  PRIMARY KEY  (`permalink`)
    149 ) TYPE=MyISAM
     149) ENGINE=MyISAM
    150150;",
    151151
     
    156156  `version` varchar(64) NOT NULL default '0',
    157157  PRIMARY KEY  (`id`)
    158 ) TYPE=MyISAM
     158) ENGINE=MyISAM
    159159;",
    160160
     
    167167  `count_categories` mediumint(8) unsigned default '0',
    168168  PRIMARY KEY  (`user_id`,`cat_id`)
    169 ) TYPE=MyISAM
     169) ENGINE=MyISAM
    170170;",
    171171
     
    183183  PRIMARY KEY  (`id`),
    184184  UNIQUE KEY `ws_access_ui1` (`name`)
    185 ) TYPE=MyISAM COMMENT='Access for Web Services'
     185) ENGINE=MyISAM COMMENT='Access for Web Services'
    186186;",*/
    187187
Note: See TracChangeset for help on using the changeset viewer.