> tail -100 beepress-phpmyadm.sql
`user_allowbbcode` tinyint(1) DEFAULT '1',
`user_allowsmile` tinyint(1) DEFAULT '1',
`user_allowavatar` tinyint(1) NOT NULL DEFAULT '1',
`user_allow_pm` tinyint(1) NOT NULL DEFAULT '1',
`user_allow_viewonline` tinyint(1) NOT NULL DEFAULT '1',
`user_notify` tinyint(1) NOT NULL DEFAULT '1',
`user_notify_pm` tinyint(1) NOT NULL DEFAULT '0',
`user_popup_pm` tinyint(1) NOT NULL DEFAULT '0',
`user_rank` int(11) DEFAULT '0',
`user_avatar` varchar(100) DEFAULT NULL,
`user_avatar_type` tinyint(4) NOT NULL DEFAULT '0',
`user_email` varchar(255) DEFAULT NULL,
`user_icq` varchar(15) DEFAULT NULL,
`user_website` varchar(100) DEFAULT NULL,
`user_from` varchar(100) DEFAULT NULL,
`user_sig` text,
`user_sig_bbcode_uid` char(10) DEFAULT NULL,
`user_aim` varchar(255) DEFAULT NULL,
`user_yim` varchar(255) DEFAULT NULL,
`user_msnm` varchar(255) DEFAULT NULL,
`user_occ` varchar(100) DEFAULT NULL,
`user_interests` varchar(255) DEFAULT NULL,
`user_actkey` varchar(32) DEFAULT NULL,
`user_newpasswd` varchar(32) DEFAULT NULL,
PRIMARY KEY (`user_id`),
KEY `user_session_time` (`user_session_time`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- 转å表ä¸ç ® `phpcyb_users`
-- æ°æ
INSERT INTO `phpcyb_users` (`user_id`, `user_active`, `username`, `user_password`, `user_session_time`, `user_session_page`, `user_lastvisit`, `user_regdate`, `user_level`, `user_posts`, `user_timezone`, `user_style`, `user_lang`, `user_dateformat`, `user_new_privmsg`, `user_unread_privmsg`, `user_last_privmsg`, `user_login_tries`, `user_last_login_try`, `user_emailtime`, `user_viewemail`, `user_attachsig`, `user_allowhtml`, `user_allowbbcode`, `user_allowsmile`, `user_allowavatar`, `user_allow_pm`, `user_allow_viewonline`, `user_notify`, `user_notify_pm`, `user_popup_pm`, `user_rank`, `user_avatar`, `user_avatar_type`, `user_email`, `user_icq`, `user_website`, `user_from`, `user_sig`, `user_sig_bbcode_uid`, `user_aim`, `user_yim`, `user_msnm`, `user_occ`, `user_interests`, `user_actkey`, `user_newpasswd`) VALUES
(-1, 0, 'Anonymous', '', 0, 0, 0, 1329853477, 0, 0, '0.00', NULL, '', '', 0, 0, 0, 0, 0, NULL, 0, 0, 1, 1, 1, 1, 0, 1, 0, 1, 0, NULL, '', 0, '', '', '', '', '', NULL, '', '', '', '', '', '', ''),
(2, 1, 'zhiyong', 'd9d1b877287301a9ae10c991e954a51f', 1330025975, 1, 1330014819, 1329853477, 1, 4, '0.00', 1, 'english', 'd M Y h:i a', 0, 0, 0, 0, 0, NULL, 0, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, '', 0, 'bees.msu@gmail.com', '', '', '', '', '', '', '', '', '', '', '', ''),
(3, 1, 'tgiray', 'f1aeddcf0c75bb59b3f879d3a337844c', 1329969872, 0, 1329933212, 1329932564, 0, 1, '0.00', 1, 'english', 'D M d, Y g:i a', 0, 0, 0, 0, 0, NULL, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, '', 0, 'tgiray2@yahoo.com', '', '', 'Puerto Rico', 'Tugrul Giray', '1a372d450d', '', '', '', '', '', '', NULL),
(4, 1, 'wuj', '2121dd1d98b49c7d0d80d36c291371d9', 1329942766, -4, 1329942700, 1329942650, 0, 0, '-8.00', 1, 'english', 'D M d, Y g:i a', 0, 0, 1329942700, 0, 0, NULL, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, '', 0, 'jianwu2nd@gmail.com', '', '', '', '', '', '', '', '', '', '', '', NULL);
-- --------------------------------------------------------
--
-- 表ç
ç»æ
`phpcyb_vote_desc`
--
CREATE TABLE IF NOT EXISTS `phpcyb_vote_desc` (
`vote_id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
`topic_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
`vote_text` text NOT NULL,
`vote_start` int(11) NOT NULL DEFAULT '0',
`vote_length` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`vote_id`),
KEY `topic_id` (`topic_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表ç
ç»æ
`phpcyb_vote_results`
--
CREATE TABLE IF NOT EXISTS `phpcyb_vote_results` (
`vote_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
`vote_option_id` tinyint(4) unsigned NOT NULL DEFAULT '0',
`vote_option_text` varchar(255) NOT NULL,
`vote_result` int(11) NOT NULL DEFAULT '0',
KEY `vote_option_id` (`vote_option_id`),
KEY `vote_id` (`vote_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- 表ç
ç»æ
`phpcyb_vote_voters`
--
CREATE TABLE IF NOT EXISTS `phpcyb_vote_voters` (
`vote_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
`vote_user_id` mediumint(8) NOT NULL DEFAULT '0',
`vote_user_ip` char(8) NOT NULL,
KEY `vote_id` (`vote_id`),
KEY `vote_user_id` (`vote_user_id`),
KEY `vote_user_ip` (`vote_user_ip`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- 表ç
ç»æ
`phpcyb_words`
--
CREATE TABLE IF NOT EXISTS `phpcyb_words` (
`word_id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
`word` char(100) NOT NULL,
`replacement` char(100) NOT NULL,
PRIMARY KEY (`word_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;