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:
@@ -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) -------------------------------------------------------------
|
||||
|
Reference in New Issue
Block a user