- Affected version
- 1.5.15
Code:
CREATE TABLE xf_poll_response (
poll_response_id INT UNSIGNED NOT NULL AUTO_INCREMENT,
poll_id INT UNSIGNED NOT NULL,
response VARCHAR(100) NOT NULL,
response_vote_count INT UNSIGNED NOT NULL DEFAULT 0,
voters MEDIUMBLOB NOT NULL,
PRIMARY KEY (poll_response_id),
KEY poll_id_response_id (poll_id, poll_response_id)
) ENGINE = InnoDB CHARACTER SET utf8 COLLATE utf8_general_ci
This affects XF2 as well