- Small bugfix for the database.mysql sql structure with the new indexes

introduced in yesterday's forum query patch.  Patch by Matt.
4.3.x
Dries Buytaert 2003-08-28 18:03:40 +00:00
parent 1ed2329261
commit 99400fa334
1 changed files with 4 additions and 4 deletions

View File

@ -284,10 +284,10 @@ CREATE TABLE node (
KEY node_type (type(4)),
KEY node_title_type (title,type(4)),
KEY status (status),
KEY uid (uid)
KEY node_moderate (moderate);
KEY node_path (path(5));
KEY node_promote_status (promote, status);
KEY uid (uid),
KEY node_moderate (moderate),
KEY node_path (path(5)),
KEY node_promote_status (promote, status)
) TYPE=MyISAM;
--