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.
 
 
 
 
 
 

11 lines
349 B

#2008-12-11 niclone
CREATE TABLE IF NOT EXISTS `tiki_sent_newsletters_files` (
`id` int(11) NOT NULL auto_increment,
`editionId` int(11) NOT NULL,
`name` varchar(256) NOT NULL,
`type` varchar(64) NOT NULL,
`size` int(11) NOT NULL,
`filename` varchar(256) NOT NULL,
PRIMARY KEY (`id`),
KEY `editionId` (`editionId`)
) ENGINE=MyISAM;