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.
 
 
 
 
 
 

7 lines
262 B

CREATE TABLE IF NOT EXISTS `tiki_tabular_formats` (
`tabularId` INT NOT NULL PRIMARY KEY AUTO_INCREMENT,
`trackerId` INT NOT NULL,
`name` VARCHAR(30) NOT NULL,
`format_descriptor` TEXT,
KEY `tabular_tracker_ix` (`trackerId`)
) ENGINE=MyISAM;