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.
 
 
 
 
 
 

15 lines
411 B

CREATE TABLE IF NOT EXISTS `tiki_activity_stream` (
`activityId` int(8) NOT NULL auto_increment,
`eventType` varchar(100) NOT NULL,
`eventDate` int NOT NULL,
`arguments` BLOB,
PRIMARY KEY(`activityId`)
) ENGINE=MyISAM;
CREATE TABLE IF NOT EXISTS `tiki_activity_stream_mapping` (
`field_name` varchar(50) NOT NULL,
`field_type` varchar(15) NOT NULL,
PRIMARY KEY(`field_name`)
) ENGINE=MyISAM;