- Patch #40016 by Thox: profile tables do not default to MyISAM.

4.7.x
Dries Buytaert 2005-12-05 12:35:22 +00:00
parent ad3d637c57
commit 70039a954e
1 changed files with 2 additions and 2 deletions

View File

@ -490,7 +490,7 @@ CREATE TABLE profile_fields (
KEY category (category),
UNIQUE KEY name (name),
PRIMARY KEY (fid)
);
) TYPE=MyISAM;
--
-- Table structure for table 'profile_values'
@ -502,7 +502,7 @@ CREATE TABLE profile_values (
value text,
KEY uid (uid),
KEY fid (fid)
);
) TYPE=MyISAM;
--