summaryrefslogtreecommitdiff
path: root/installer
diff options
context:
space:
mode:
authorTim Almdal <tnalmdal@shaw.ca>2009-09-16 22:23:32 -0700
committerTim Almdal <tnalmdal@shaw.ca>2009-09-16 22:23:32 -0700
commit9d76797b17d65540a903ef37eee6edca3e83108b (patch)
tree0040acb8746d68e21f06ab265493f4054e525908 /installer
parent5490057480f17e5810cf8b9e558769ebd74d4b27 (diff)
Changed the search module installer to explicitly specify MyISAM as the database type. Changed the packager to not remove the engine specification if the table is search_records. Fixes Ticket #774
Diffstat (limited to 'installer')
-rwxr-xr-xinstaller/install.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/installer/install.sql b/installer/install.sql
index ca0ecadf..e8aaa681 100755
--- a/installer/install.sql
+++ b/installer/install.sql
@@ -278,7 +278,7 @@ CREATE TABLE {search_records} (
PRIMARY KEY (`id`),
KEY `item_id` (`item_id`),
FULLTEXT KEY `data` (`data`)
-) AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
+) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
SET character_set_client = @saved_cs_client;
INSERT INTO {search_records} VALUES (1,1,0,' Gallery');
DROP TABLE IF EXISTS {sessions};