Open makepolltables.php
first entry is:
Code:
echo "Editing <i>post</i> table ... ";
//$DB_site->query("ALTER TABLE post DROP pollid");
$DB_site->query("ALTER TABLE post ADD pollid MEDIUMINT (8) UNSIGNED DEFAULT '0' not null");
change
Code:
//$DB_site->query("ALTER TABLE post DROP pollid");
into
Code:
$DB_site->query("ALTER TABLE post DROP pollid");
this will delete the pollid column. Be warned, if you had polls before, they will die.