1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-21 13:52:35 +02:00

Final changes from TYPE=MyISAM to ENGINE=MyISAM

This commit is contained in:
e107steved
2011-05-02 20:51:21 +00:00
parent 820da43f63
commit 4d340285a4
5 changed files with 301 additions and 301 deletions

View File

@@ -66,7 +66,7 @@ $eplug_tables = array(
pm_option varchar(250) NOT NULL default '',
pm_size int(10) unsigned NOT NULL default '0',
PRIMARY KEY (pm_id)
) TYPE=MyISAM AUTO_INCREMENT=1 ;",
) ENGINE=MyISAM AUTO_INCREMENT=1 ;",
"CREATE TABLE ".MPREFIX."private_msg_block (
pm_block_id int(10) unsigned NOT NULL auto_increment,
pm_block_from int(10) unsigned NOT NULL default '0',
@@ -74,7 +74,7 @@ $eplug_tables = array(
pm_block_datestamp int(10) unsigned NOT NULL default '0',
pm_block_count int(10) unsigned NOT NULL default '0',
PRIMARY KEY (pm_block_id)
) TYPE=MyISAM AUTO_INCREMENT=1 ;"
) ENGINE=MyISAM AUTO_INCREMENT=1 ;"
);
// Create a link in main menu (yes=TRUE, no=FALSE) -------------------------------------------------------------