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.
 
 
 
 
 
 

9 lines
297 B

CREATE TABLE IF NOT EXISTS `tiki_search_queries` (
`queryId` INT NOT NULL PRIMARY KEY AUTO_INCREMENT,
`userId` INT NOT NULL,
`lastModif` INT,
`label` VARCHAR(100) NOT NULL,
`priority` VARCHAR(15) NOT NULL,
`query` BLOB,
INDEX `query_userId` (`userId`)
) ENGINE=MyISAM;