I am trying to move my wp site and upload my current database to phpmyadmin. When I do that I get the following error:
SQL query:
CREATE TABLE `wp_bp_option_tree` (
`id` mediumint( 9 ) NOT NULL AUTO_INCREMENT ,
`item_id` varchar( 50 ) NOT NULL ,
`item_title` varchar( 100 ) NOT NULL ,
`item_desc` longtext,
`item_type` varchar( 30 ) NOT NULL ,
`item_options` varchar( 250 ) default NULL ,
`item_sort` mediumint( 9 ) NOT NULL default '0',
PRIMARY KEY ( `id` ) ,
UNIQUE KEY `item_id` ( `item_id` )
) ENGINE = MYISAM AUTO_INCREMENT =115 DEFAULT CHARSET = utf8;
MySQL said:
#1050 - Table 'wp_bp_option_tree' already exists
Can anyone address what this problem is and how I can fix it?