Staale
12-07-2006, 05:10 PM
Hi,i managed to delete comments row in mysql. Could anyone be so kind and give me the sql code? :)
Run this in phpMyAdmin:
CREATE TABLE `comments` (
`comment_id` int(10) unsigned NOT NULL,
`title` varchar(255) NOT NULL,
`comment` mediumtext NOT NULL,
`file_id` int(10) NOT NULL,
`user_id` int(10) NOT NULL,
`added` int(10) NOT NULL,
UNIQUE KEY `comment_id` (`comment_id`)
) TYPE=MyISAM AUTO_INCREMENT=1;
vBulletin® v3.6.8, Copyright ©2000-2010, Jelsoft Enterprises Ltd.