I misunderstood you the first time, Doc.
So, what you are saying is reset all int(#) to zero? For all tables as well? Right column boxes do not show.
DROP TABLE IF EXISTS layout_boxes;
/*!40101 SET @saved_cs_client = @@character_set_client /;
/!40101 SET character_set_client = utf8 /;
CREATE TABLE layout_boxes (
layout_id int(0) NOT NULL AUTO_INCREMENT,
layout_template varchar(64) NOT NULL DEFAULT '',
layout_box_name varchar(64) NOT NULL DEFAULT '',
layout_box_status tinyint(0) NOT NULL DEFAULT '0',
layout_box_location tinyint(0) NOT NULL DEFAULT '0',
layout_box_sort_order int(0) NOT NULL DEFAULT '0',
layout_box_sort_order_single int(0) NOT NULL DEFAULT '0',
layout_box_status_single tinyint(0) NOT NULL DEFAULT '0',
PRIMARY KEY (layout_id),
KEY idx_name_template_zen (layout_template,layout_box_name),
KEY idx_layout_box_status_zen (layout_box_status),
KEY idx_layout_box_sort_order_zen (layout_box_sort_order)
) ENGINE=MyISAM AUTO_INCREMENT=99 DEFAULT CHARSET=utf8;
/!40101 SET character_set_client = @saved_cs_client */;
Do you also want ENGINE=MyISAM AUTO_INCREMENT=117 DEFAULT CHARSET=utf8; to be?
ENGINE=MyISAM AUTO_INCREMENT=0 DEFAULT CHARSET=utf8;
I think I found an error on my end because downloading the backup copy of the DB does not show the changes I make i.e adding auto_increment. I delete all the lines above the first instance of DROP TABLE IF EXISTS address_book and also below the last instance of UNLOCK TABLES. Copy pasted file directly into admin sql, correct?