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

    r8728 r9086  
    139139  element_id mediumint(8) NOT NULL default '0',
    140140  PRIMARY KEY  (user_id,element_id)
    141 ) TYPE=MyISAM
     141) ENGINE=MyISAM
    142142;",
    143143
     
    148148  forbidden_categories text,
    149149  PRIMARY KEY  (user_id)
    150 ) TYPE=MyISAM
     150) ENGINE=MyISAM
    151151;",
    152152
     
    157157  last_check datetime default NULL,
    158158  PRIMARY KEY  (id)
    159 ) TYPE=MyISAM
     159) ENGINE=MyISAM
    160160;",
    161161
     
    175175  registration_date datetime NOT NULL default '0000-00-00 00:00:00',
    176176  UNIQUE KEY user_infos_ui1 (user_id)
    177 ) TYPE=MyISAM
     177) ENGINE=MyISAM
    178178;"
    179179  );
Note: See TracChangeset for help on using the changeset viewer.