
Originally Posted by
cpradio
Drop the existing table and then import it. Next time have your backup include the DROP IF EXISTS option.
I must be missing something bc i dropped this section:
Code:
-- --------------------------------------------------------
--
-- Table structure for table `wp_commentmeta`
--
CREATE TABLE `wp_commentmeta` (
`meta_id` bigint(20) unsigned NOT NULL auto_increment,
`comment_id` bigint(20) unsigned NOT NULL default '0',
`meta_key` varchar(255) default NULL,
`meta_value` longtext,
PRIMARY KEY (`meta_id`),
KEY `comment_id` (`comment_id`),
KEY `meta_key` (`meta_key`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ;
--
-- Dumping data for table `wp_commentmeta`
--
-- --------------------------------------------------------
and i go the same error but for wp_comments
so then i tried dropping that section as well but i got an error for something else.
Bookmarks