I mistakenly have lost the configuration_group table (and thus the menu from within the admin) by executing the code below. I was trying to get the MultiGeoZone to appear on the menu.
DROP TABLE IF EXISTS configuration_group;
CREATE TABLE configuration_group (
configuration_group_id int(11) NOT NULL auto_increment,
configuration_group_title varchar(64) NOT NULL default '',
configuration_group_description varchar(255) NOT NULL default '',
sort_order int(5) default NULL,
visible int(1) default '1',
PRIMARY KEY (configuration_group_id),
KEY idx_visible_zen (visible)
) TYPE=MyISAM;
Does anyone know the SQL code or patch to get it back please?



