Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- CREATE TABLE `phpbb3_poll_options` (
- `poll_option_id` tinyint(4) NOT NULL DEFAULT '0',
- `topic_id` mediumint(8) 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`)
- ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
- CREATE TABLE `phpbb3_poll_votes` (
- `topic_id` mediumint(8) UNSIGNED NOT NULL DEFAULT '0',
- `poll_option_id` tinyint(4) NOT NULL DEFAULT '0',
- `vote_user_id` mediumint(8) UNSIGNED NOT NULL DEFAULT '0',
- `vote_user_ip` VARCHAR(40) COLLATE utf8_bin NOT NULL DEFAULT '',
- KEY `topic_id` (`topic_id`),
- KEY `vote_user_id` (`vote_user_id`),
- KEY `vote_user_ip` (`vote_user_ip`)
- ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
Advertisement
Add Comment
Please, Sign In to add comment