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.
 
 
 
 
 
 

8 lines
284 B

CREATE TABLE IF NOT EXISTS `tiki_db_status` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`objectId` varchar(100) NOT NULL,
`tableName` varchar(100) NOT NULL,
`status` varchar(100) NOT NULL,
`other` varchar(100) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=1;