I think that you should throw this SQL code to your mysql (via phpmyadmin)
CREATE TABLE IF NOT EXISTS `z_polls` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`question` varchar(255) NOT NULL,
`end` int(11) NOT NULL,
`start` int(11) NOT NULL,
`answers` int(11) NOT NULL,
`votes_all` int(11)...