# Multicraigs by Intarcorp. Licensed under the GNU GPL # Consult Craigslist's terms before using # ************************************************************ # Dump of table multicraigs # ------------------------------------------------------------ CREATE TABLE `multicraigs` ( `id` int(11) NOT NULL auto_increment, `title` varchar(255) default NULL, `url` varchar(255) default NULL, `description` text, `time_entered` datetime NOT NULL, `time_stored` timestamp NOT NULL default '0000-00-00 00:00:00' on update CURRENT_TIMESTAMP, `city` varchar(255) default NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8;