shadowm

Untitled

Jun 9th, 2013
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQL 0.82 KB | None | 0 0
  1. CREATE TABLE `phpbb3_poll_options` (
  2.   `poll_option_id` tinyint(4) NOT NULL DEFAULT '0',
  3.   `topic_id` mediumint(8) UNSIGNED NOT NULL DEFAULT '0',
  4.   `poll_option_text` text COLLATE utf8_bin NOT NULL,
  5.   `poll_option_total` mediumint(8) UNSIGNED NOT NULL DEFAULT '0',
  6.   KEY `poll_opt_id` (`poll_option_id`),
  7.   KEY `topic_id` (`topic_id`)
  8. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
  9.  
  10. CREATE TABLE `phpbb3_poll_votes` (
  11.   `topic_id` mediumint(8) UNSIGNED NOT NULL DEFAULT '0',
  12.   `poll_option_id` tinyint(4) NOT NULL DEFAULT '0',
  13.   `vote_user_id` mediumint(8) UNSIGNED NOT NULL DEFAULT '0',
  14.   `vote_user_ip` VARCHAR(40) COLLATE utf8_bin NOT NULL DEFAULT '',
  15.   KEY `topic_id` (`topic_id`),
  16.   KEY `vote_user_id` (`vote_user_id`),
  17.   KEY `vote_user_ip` (`vote_user_ip`)
  18. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
Advertisement
Add Comment
Please, Sign In to add comment