1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-16 11:36:08 +02:00

Issue #5209 - Partial fix. Currently does not support FULLTEXT on a field that already has an INDEX.

This commit is contained in:
camer0n
2025-01-03 16:02:26 -08:00
parent 8a6919f2a3
commit 0b89d5d301
8 changed files with 111 additions and 34 deletions

View File

@@ -25,7 +25,11 @@ CREATE TABLE download (
download_visible varchar(255) NOT NULL default '0',
PRIMARY KEY (download_id),
UNIQUE KEY download_name (download_name),
KEY download_category (download_category)
KEY download_category (download_category),
FULLTEXT (download_url),
FULLTEXT (download_description),
FULLTEXT (download_author),
FULLTEXT (download_author_website)
) ENGINE=MyISAM;
# --------------------------------------------------------