Bug #20861 ยป bug11687.patch
typo3/sysext/indexed_search/ext_tables.sql (working copy) | ||
---|---|---|
PRIMARY KEY (uid)
|
||
) ENGINE=InnoDB;
|
||
#
|
||
# Table structure for table 'index_stat_word'
|
||
#
|
||
CREATE TABLE index_stat_word (
|
||
uid int(11) NOT NULL auto_increment,
|
||
word varchar(30) DEFAULT '' NOT NULL,
|
||
index_stat_search_id int(11) DEFAULT '0' NOT NULL,
|
||
tstamp int(11) DEFAULT '0' NOT NULL,
|
||
PRIMARY KEY (uid),
|
||
KEY tstamp (tstamp,word)
|
||
) ENGINE=InnoDB;
|
||
#
|
||
# Table structure for table 'index_debug'
|
||
#
|
||
CREATE TABLE index_debug (
|