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.
 
 
 
 
 
 

10 lines
247 B

CREATE TABLE IF NOT EXISTS `tiki_activity_stream_rules` (
`ruleId` int(8) NOT NULL auto_increment,
`eventType` varchar(100) NOT NULL,
`ruleType` varchar(20) NOT NULL,
`rule` TEXT,
`notes` TEXT,
PRIMARY KEY(`ruleId`)
) ENGINE=MyISAM;