You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
-- tiki_innodb.sql is run after tiki.sql if InnoDB is being installed
|
|
|
-- Do not include fulltext index definitions. The installer will include these when the current db engine supports fulltext search
|
|
|
-- $Id$
|
|
|
|
|
|
-- Force Tiki fulltext search off, when InnoDB is run
|
|
|
insert into tiki_preferences (name, value) values ('feature_search_fulltext', 'n')
|
|
|
ON DUPLICATE KEY UPDATE value = 'n';
|