CREATE TABLE IF NOT EXISTS `link_history` (
`id` int(11) NOT NULL
AUTO_INCREMENT,
`time` int(15) NOT NULL DEFAULT '0',
`user_id`
int(11) NOT NULL DEFAULT '0',
`name` text NOT NULL,
`text` text NOT
NULL,
PRIMARY KEY (`id`))
ENGINE=MyISAM DEFAULT CHARSET=utf8
AUTO_INCREMENT=1 ;