- 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
parent
1ed2329261
commit
99400fa334
|
@ -284,10 +284,10 @@ CREATE TABLE node (
|
||||||
KEY node_type (type(4)),
|
KEY node_type (type(4)),
|
||||||
KEY node_title_type (title,type(4)),
|
KEY node_title_type (title,type(4)),
|
||||||
KEY status (status),
|
KEY status (status),
|
||||||
KEY uid (uid)
|
KEY uid (uid),
|
||||||
KEY node_moderate (moderate);
|
KEY node_moderate (moderate),
|
||||||
KEY node_path (path(5));
|
KEY node_path (path(5)),
|
||||||
KEY node_promote_status (promote, status);
|
KEY node_promote_status (promote, status)
|
||||||
) TYPE=MyISAM;
|
) TYPE=MyISAM;
|
||||||
|
|
||||||
--
|
--
|
||||||
|
|
Loading…
Reference in New Issue