Simply check struct.sql, definition of table is here
I followed one of your advices, to create manually the table:
CREATE TABLE `c78o_t_item_veronika` (
`fk_i_item_id` int(11) UNSIGNED NOT NULL,
`s_phone` varchar(100) DEFAULT NULL,
`i_condition` varchar(100) DEFAULT NULL,
`i_transaction` varchar(100) DEFAULT NULL,
`i_sold` varchar(100) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
It worked
THANK YOU!!!