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.3.1.php

    r8728 r9086  
    5656  comment varchar(255) default NULL,
    5757  PRIMARY KEY  (param)
    58 ) TYPE=MyISAM COMMENT='configuration table'
     58) ENGINE=MyISAM COMMENT='configuration table'
    5959;",
    6060
     
    280280  rate tinyint(2) unsigned NOT NULL default '0',
    281281  PRIMARY KEY  (user_id,element_id)
    282 ) TYPE=MyISAM
     282) ENGINE=MyISAM
    283283;",
    284284
     
    289289  forbidden_categories text,
    290290  PRIMARY KEY  (user_id)
    291 ) TYPE=MyISAM
     291) ENGINE=MyISAM
    292292;",
    293293
Note: See TracChangeset for help on using the changeset viewer.