Description de la table
Table contenant les options de votes (oui, non, neutre).
CREATE TABLE phpbb_poll_options ( poll_option_id tinyint(4) NOT NULL DEFAULT '0', topic_id int(10) unsigned NOT NULL DEFAULT '0', poll_option_text text COLLATE utf8_bin NOT NULL, poll_option_total mediumint(8) unsigned NOT NULL DEFAULT '0', KEY poll_opt_id (poll_option_id), KEY topic_id (topic_id) ) CHARSET=utf8 COLLATE=utf8_bin;