diff options
author | Dries Buytaert <dries@buytaert.net> | 2004-11-03 16:46:58 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2004-11-03 16:46:58 +0000 |
commit | bd6ae69345dd6450e8480a647daae3c323cff095 (patch) | |
tree | 794f704198808728cdbb94bc2eec08cb66d8e901 /database | |
parent | d54ef6db841a32f8fea557ba826811f51e315947 (diff) | |
download | brdo-bd6ae69345dd6450e8480a647daae3c323cff095.tar.gz brdo-bd6ae69345dd6450e8480a647daae3c323cff095.tar.bz2 |
- Patch by Steven:
+ Display 'friendly' name rather than module name in search watchdog
messages.
+ Remove left-over from search_total table.
+ Add index wipe button to the admin
+ Moved the admin to admin/settings/search
+ Prevented menu bug when node modules update the breadcrumb in view
(thanks JonBob).
+ Changed search_total table's word key to PRIMARY.
Diffstat (limited to 'database')
-rw-r--r-- | database/database.mysql | 2 | ||||
-rw-r--r-- | database/updates.inc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/database/database.mysql b/database/database.mysql index 884aa8b35..026a20292 100644 --- a/database/database.mysql +++ b/database/database.mysql @@ -551,7 +551,7 @@ CREATE TABLE search_index ( CREATE TABLE search_total ( word varchar(50) NOT NULL default '', count int(10) unsigned default NULL, - KEY word (word) + PRIMARY KEY word (word) ) TYPE=MyISAM; -- diff --git a/database/updates.inc b/database/updates.inc index 444487244..ac7ad621d 100644 --- a/database/updates.inc +++ b/database/updates.inc @@ -1946,7 +1946,7 @@ function update_110() { $ret[] = update_sql("CREATE TABLE {search_total} ( word varchar(50) NOT NULL default '', count int(10) unsigned default NULL, - KEY word (word) + PRIMARY KEY word (word) ) TYPE=MyISAM"); $ret[] = update_sql("DELETE FROM {variable} WHERE name = 'node_cron_last'"); |