SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
--
-- Database: `xmb11000`
--
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]attachments`
--
CREATE TABLE `[[dbprefix]]attachments` (
`aid` int(11) NOT NULL AUTO_INCREMENT,
`pid` int(11) NOT NULL DEFAULT '0',
`filename` varchar(120) NOT NULL DEFAULT '',
`filetype` varchar(120) NOT NULL DEFAULT '',
`filesize` varchar(120) NOT NULL DEFAULT '',
`attachment` longblob NOT NULL,
`downloads` int(11) NOT NULL DEFAULT '0',
`img_size` varchar(9) NOT NULL,
`parentid` int(11) NOT NULL DEFAULT '0',
`subdir` varchar(15) NOT NULL,
`uid` int(11) NOT NULL DEFAULT '0',
`updatetime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`aid`),
KEY `pid` (`pid`),
KEY `parentid` (`parentid`),
KEY `uid` (`uid`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]banned`
--
CREATE TABLE `[[dbprefix]]banned` (
`ip1` smallint(6) NOT NULL DEFAULT '0',
`ip2` smallint(6) NOT NULL DEFAULT '0',
`ip3` smallint(6) NOT NULL DEFAULT '0',
`ip4` smallint(6) NOT NULL DEFAULT '0',
`dateline` int(11) NOT NULL DEFAULT '0',
`id` smallint(6) NOT NULL AUTO_INCREMENT,
PRIMARY KEY (`id`),
KEY `ip1` (`ip1`),
KEY `ip2` (`ip2`),
KEY `ip3` (`ip3`),
KEY `ip4` (`ip4`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]buddys`
--
CREATE TABLE `[[dbprefix]]buddys` (
`username` varchar(32) NOT NULL DEFAULT '',
`buddyname` varchar(32) NOT NULL DEFAULT '',
KEY `username` (`username`(8))
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]captchaimages`
--
CREATE TABLE `[[dbprefix]]captchaimages` (
`imagehash` varchar(32) NOT NULL DEFAULT '',
`imagestring` varchar(12) NOT NULL DEFAULT '',
`dateline` int(11) NOT NULL DEFAULT '0',
KEY `dateline` (`dateline`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]favorites`
--
CREATE TABLE `[[dbprefix]]favorites` (
`tid` int(11) NOT NULL DEFAULT '0',
`username` varchar(32) NOT NULL DEFAULT '',
`type` varchar(32) NOT NULL DEFAULT '',
KEY `tid` (`tid`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]forums`
--
CREATE TABLE `[[dbprefix]]forums` (
`type` varchar(15) NOT NULL DEFAULT '',
`fid` smallint(6) NOT NULL AUTO_INCREMENT,
`name` varchar(128) NOT NULL DEFAULT '',
`status` varchar(15) NOT NULL DEFAULT '',
`lastpost` varchar(54) NOT NULL DEFAULT '',
`moderator` varchar(100) NOT NULL DEFAULT '',
`displayorder` smallint(6) NOT NULL DEFAULT '0',
`description` text,
`allowsmilies` char(3) NOT NULL DEFAULT '',
`allowbbcode` char(3) NOT NULL DEFAULT '',
`userlist` text NOT NULL,
`theme` smallint(6) NOT NULL DEFAULT '0',
`posts` int(11) NOT NULL DEFAULT '0',
`threads` int(11) NOT NULL DEFAULT '0',
`fup` smallint(6) NOT NULL DEFAULT '0',
`postperm` varchar(11) NOT NULL DEFAULT '0,0,0,0',
`allowimgcode` char(3) NOT NULL DEFAULT '',
`attachstatus` varchar(15) NOT NULL DEFAULT '',
`password` varchar(32) NOT NULL DEFAULT '',
PRIMARY KEY (`fid`),
KEY `fup` (`fup`),
KEY `type` (`type`),
KEY `displayorder` (`displayorder`),
KEY `status` (`status`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;
--
-- Dumping data for table `[[dbprefix]]forums`
--
INSERT INTO `[[dbprefix]]forums` VALUES
('forum', 1, 'Default Forum', 'on', '', '', 0, 'This is the default forum created during installation<br />To create or modify forums go to the forum section of the administration panel', 'yes', 'yes', '', 0, 0, 0, 0, '31,31,31,63', 'yes', 'on', '');
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]hold_attachments`
--
CREATE TABLE `[[dbprefix]]hold_attachments` (
`aid` int(11) NOT NULL AUTO_INCREMENT,
`pid` int(11) NOT NULL DEFAULT '0',
`filename` varchar(120) NOT NULL DEFAULT '',
`filetype` varchar(120) NOT NULL DEFAULT '',
`filesize` varchar(120) NOT NULL DEFAULT '',
`attachment` longblob NOT NULL,
`downloads` int(11) NOT NULL DEFAULT '0',
`img_size` varchar(9) NOT NULL,
`parentid` int(11) NOT NULL DEFAULT '0',
`subdir` varchar(15) NOT NULL,
`uid` int(11) NOT NULL DEFAULT '0',
`updatetime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`aid`),
KEY `pid` (`pid`),
KEY `parentid` (`parentid`),
KEY `uid` (`uid`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]hold_favorites`
--
CREATE TABLE `[[dbprefix]]hold_favorites` (
`tid` int(11) NOT NULL DEFAULT '0',
`username` varchar(32) NOT NULL DEFAULT '',
`type` varchar(32) NOT NULL DEFAULT '',
KEY `tid` (`tid`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]hold_posts`
--
CREATE TABLE `[[dbprefix]]hold_posts` (
`fid` smallint(6) NOT NULL DEFAULT '0',
`tid` int(11) NOT NULL DEFAULT '0',
`pid` int(11) NOT NULL AUTO_INCREMENT,
`author` varchar(32) NOT NULL DEFAULT '',
`message` text NOT NULL,
`subject` tinytext NOT NULL,
`dateline` int(11) NOT NULL DEFAULT '0',
`icon` varchar(50) DEFAULT NULL,
`usesig` varchar(15) NOT NULL DEFAULT '',
`useip` varchar(39) NOT NULL DEFAULT '',
`bbcodeoff` varchar(15) NOT NULL DEFAULT '',
`smileyoff` varchar(15) NOT NULL DEFAULT '',
`newtid` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`pid`),
KEY `fid` (`fid`),
KEY `dateline` (`dateline`),
KEY `author` (`author`(8)),
KEY `thread_optimize` (`tid`,`dateline`,`pid`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]hold_threads`
--
CREATE TABLE `[[dbprefix]]hold_threads` (
`tid` int(11) NOT NULL AUTO_INCREMENT,
`fid` smallint(6) NOT NULL DEFAULT '0',
`subject` varchar(128) NOT NULL DEFAULT '',
`icon` varchar(75) NOT NULL DEFAULT '',
`lastpost` varchar(54) NOT NULL DEFAULT '',
`views` bigint(20) NOT NULL DEFAULT '0',
`replies` int(11) NOT NULL DEFAULT '0',
`author` varchar(32) NOT NULL DEFAULT '',
`closed` varchar(15) NOT NULL DEFAULT '',
`topped` tinyint(4) NOT NULL DEFAULT '0',
`pollopts` tinyint(4) NOT NULL DEFAULT '0',
PRIMARY KEY (`tid`),
KEY `lastpost` (`lastpost`),
KEY `author` (`author`(8)),
KEY `closed` (`closed`),
KEY `forum_optimize` (`fid`,`topped`,`lastpost`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]hold_vote_desc`
--
CREATE TABLE `[[dbprefix]]hold_vote_desc` (
`vote_id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
`topic_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`vote_id`),
KEY `topic_id` (`topic_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]hold_vote_results`
--
CREATE TABLE `[[dbprefix]]hold_vote_results` (
`vote_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
`vote_option_id` tinyint(3) unsigned NOT NULL DEFAULT '0',
`vote_option_text` varchar(255) NOT NULL DEFAULT '',
`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;
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]logs`
--
CREATE TABLE `[[dbprefix]]logs` (
`username` varchar(32) NOT NULL,
`action` varchar(64) NOT NULL DEFAULT '',
`fid` smallint(6) NOT NULL DEFAULT '0',
`tid` int(11) NOT NULL DEFAULT '0',
`date` int(11) NOT NULL DEFAULT '0',
KEY `username` (`username`(8)),
KEY `action` (`action`(8)),
KEY `fid` (`fid`),
KEY `tid` (`tid`),
KEY `date` (`date`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]members`
--
CREATE TABLE `[[dbprefix]]members` (
`uid` int(11) NOT NULL AUTO_INCREMENT,
`username` varchar(32) NOT NULL DEFAULT '',
`password` varchar(32) NOT NULL DEFAULT '',
`regdate` int(11) NOT NULL DEFAULT '0',
`postnum` mediumint(9) NOT NULL DEFAULT '0',
`email` varchar(60) NOT NULL DEFAULT '',
`site` varchar(75) NOT NULL DEFAULT '',
`status` varchar(35) NOT NULL DEFAULT '',
`location` varchar(50) NOT NULL DEFAULT '',
`bio` text NOT NULL,
`sig` text NOT NULL,
`timeoffset` decimal(4,2) NOT NULL DEFAULT '0.00',
`avatar` varchar(120) DEFAULT NULL,
`customstatus` varchar(250) NOT NULL DEFAULT '',
`theme` smallint(6) NOT NULL DEFAULT '0',
`bday` varchar(10) NOT NULL DEFAULT '0000-00-00',
`langfile` varchar(40) NOT NULL DEFAULT '',
`tpp` smallint(6) NOT NULL DEFAULT '30',
`ppp` smallint(6) NOT NULL DEFAULT '30',
`newsletter` char(3) NOT NULL DEFAULT '',
`regip` varchar(39) NOT NULL DEFAULT '',
`timeformat` int(11) NOT NULL DEFAULT '0',
`ban` varchar(15) NOT NULL DEFAULT '0',
`dateformat` varchar(10) NOT NULL DEFAULT '',
`ignoreu2u` text NOT NULL,
`lastvisit` int(10) unsigned NOT NULL DEFAULT '0',
`mood` varchar(128) NOT NULL DEFAULT 'Not Set',
`pwdate` int(11) NOT NULL DEFAULT '0',
`invisible` set('1','0') DEFAULT '',
`u2ufolders` text NOT NULL,
`saveogu2u` char(3) NOT NULL DEFAULT '',
`emailonu2u` char(3) NOT NULL DEFAULT '',
`u2ualert` tinyint(4) NOT NULL DEFAULT '0',
`bad_login_date` int(10) unsigned NOT NULL DEFAULT '0',
`bad_login_count` int(10) unsigned NOT NULL DEFAULT '0',
`bad_session_date` int(10) unsigned NOT NULL DEFAULT '0',
`bad_session_count` int(10) unsigned NOT NULL DEFAULT '0',
`sub_each_post` varchar(3) NOT NULL DEFAULT 'no',
`waiting_for_mod` varchar(3) NOT NULL DEFAULT 'no',
`password2` varchar(255) NOT NULL DEFAULT '',
`post_date` int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`uid`),
UNIQUE KEY `userunique` (`username`),
KEY `status` (`status`),
KEY `postnum` (`postnum`),
KEY `email` (`email`),
KEY `regdate` (`regdate`),
KEY `lastvisit` (`lastvisit`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;
--
-- Dumping data for table `[[dbprefix]]members`
--
INSERT INTO `[[dbprefix]]members` VALUES
(1, '[[admin_username]]', '', [[timestamp]], 0, '[[admin_email]]', '', 'Super Administrator', '', '', '', '0.00', '', '', 0, '0000-00-00', 'English', 30, 30, '', '[[clientip]]', 12, '', 'dd-mm-yyyy', '', 0, '', [[timestamp]], '0', '', 'yes', 'no', 0, 0, 0, 0, 0, 'no', 'no', '[[admin_pass]]', 0);
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]posts`
--
CREATE TABLE `[[dbprefix]]posts` (
`fid` smallint(6) NOT NULL DEFAULT '0',
`tid` int(11) NOT NULL DEFAULT '0',
`pid` int(11) NOT NULL AUTO_INCREMENT,
`author` varchar(32) NOT NULL DEFAULT '',
`message` text NOT NULL,
`subject` tinytext NOT NULL,
`dateline` int(11) NOT NULL DEFAULT '0',
`icon` varchar(50) DEFAULT NULL,
`usesig` varchar(15) NOT NULL DEFAULT '',
`useip` varchar(39) NOT NULL DEFAULT '',
`bbcodeoff` varchar(15) NOT NULL DEFAULT '',
`smileyoff` varchar(15) NOT NULL DEFAULT '',
PRIMARY KEY (`pid`),
KEY `fid` (`fid`),
KEY `dateline` (`dateline`),
KEY `author` (`author`(8)),
KEY `thread_optimize` (`tid`,`dateline`,`pid`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]ranks`
--
CREATE TABLE `[[dbprefix]]ranks` (
`title` varchar(100) NOT NULL DEFAULT '',
`posts` mediumint(9) DEFAULT '0',
`id` smallint(6) NOT NULL AUTO_INCREMENT,
`stars` smallint(6) NOT NULL DEFAULT '0',
`allowavatars` char(3) NOT NULL DEFAULT '',
`avatarrank` varchar(90) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `title` (`title`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=10 ;
--
-- Dumping data for table `[[dbprefix]]ranks`
--
INSERT INTO `[[dbprefix]]ranks` VALUES
('Newbie', 0, 1, 1, 'yes', ''),
('Junior Member', 2, 2, 2, 'yes', ''),
('Member', 100, 3, 3, 'yes', ''),
('Senior Member', 500, 4, 4, 'yes', ''),
('Posting Freak', 1000, 5, 5, 'yes', ''),
('Moderator', -1, 6, 6, 'yes', ''),
('Super Moderator', -1, 7, 7, 'yes', ''),
('Administrator', -1, 8, 8, 'yes', ''),
('Super Administrator', -1, 9, 9, 'yes', '');
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]restricted`
--
CREATE TABLE `[[dbprefix]]restricted` (
`name` varchar(32) NOT NULL DEFAULT '',
`id` smallint(6) NOT NULL AUTO_INCREMENT,
`case_sensitivity` enum('0','1') NOT NULL DEFAULT '1',
`partial` enum('0','1') NOT NULL DEFAULT '1',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ;
--
-- Dumping data for table `[[dbprefix]]restricted`
--
INSERT INTO `[[dbprefix]]restricted` VALUES
('Anonymous', 1, '0', '0'),
('xguest123', 2, '0', '0');
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]sessions`
--
CREATE TABLE `[[dbprefix]]sessions` (
`token` varchar(32) NOT NULL,
`username` varchar(32) NOT NULL,
`login_date` int(10) unsigned NOT NULL,
`expire` int(10) unsigned NOT NULL,
`regenerate` int(10) unsigned NOT NULL,
`replaces` varchar(32) NOT NULL,
`agent` varchar(255) NOT NULL,
`name` varchar(80) NOT NULL DEFAULT '',
PRIMARY KEY (`token`),
KEY `username` (`username`),
KEY `replaces` (`replaces`(6)),
KEY `expire` (`expire`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]settings`
--
CREATE TABLE `[[dbprefix]]settings` (
`name` varchar(32) NOT NULL,
`value` text NOT NULL,
PRIMARY KEY (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `[[dbprefix]]settings`
--
INSERT INTO `[[dbprefix]]settings` VALUES
('addtime', '0'),
('adminemail', '[[admin_email]]'),
('allowrankedit', 'on'),
('attachimgpost', 'on'),
('attach_remote_images', 'off'),
('authorstatus', 'on'),
('avastatus', 'on'),
('bbinsert', 'on'),
('bbname', '[[site_name]]'),
('bboffreason', ''),
('bbrules', 'off'),
('bbrulestxt', ''),
('bbstatus', 'on'),
('captcha_status', 'on'),
('captcha_reg_status', 'on'),
('captcha_post_status', 'on'),
('captcha_search_status', 'off'),
('captcha_code_charset', 'A-Z'),
('captcha_code_length', '8'),
('captcha_code_casesensitive', 'off'),
('captcha_code_shadow', 'off'),
('captcha_image_type', 'png'),
('captcha_image_width', '250'),
('captcha_image_height', '50'),
('captcha_image_bg', ''),
('captcha_image_dots', '0'),
('captcha_image_lines', '70'),
('captcha_image_fonts', ''),
('captcha_image_minfont', '16'),
('captcha_image_maxfont', '25'),
('captcha_image_color', 'off'),
('catsonly', 'off'),
('coppa', 'off'),
('dateformat', 'dd-mm-yyyy'),
('def_tz', '0.00'),
('dotfolders', 'on'),
('doublee', 'off'),
('editedby', 'off'),
('emailcheck', 'off'),
('faqstatus', 'on'),
('filesperpost', '10'),
('files_min_disk_size', '9216'),
('files_storage_path', ''),
('files_subdir_format', '1'),
('file_url_format', '1'),
('files_virtual_url', ''),
('floodctrl', '5'),
('footer_options', 'queries-phpsql-loadtimes-totaltime'),
('google_captcha', 'off'),
('google_captcha_sitekey', ''),
('google_captcha_secret', ''),
('gzipcompress', 'on'),
('hideprivate', 'on'),
('hide_banned', 'off'),
('hottopic', '20'),
('images_https_only', 'off'),
('indexshowbar', '2'),
('index_stats', 'on'),
('ipreg', 'on'),
('ip_banning', 'off'),
('langfile', 'English'),
('mailer_dkim_domain', ''),
('mailer_dkim_key_path', ''),
('mailer_dkim_selector', ''),
('mailer_host', 'default'),
('mailer_password', ''),
('mailer_port', ''),
('mailer_tls', 'auto'),
('mailer_type', 'default'),
('mailer_username', ''),
('maxattachsize', '256000'),
('maxdayreg', '25'),
('max_avatar_size', '100x100'),
('max_image_size', '1000x1000'),
('max_thumb_size', '200x200'),
('memberperpage', '45'),
('memliststatus', 'on'),
('notifyonreg', 'off'),
('onlinetodaycount', '50'),
('onlinetoday_status', 'on'),
('postperpage', '25'),
('pruneusers', '0'),
('quarantine_new_users', 'off'),
('quickjump_status', 'on'),
('quickreply_status', 'on'),
('regoptional', 'off'),
('regstatus', 'on'),
('regviewonly', 'off'),
('reportpost', 'on'),
('resetsigs', 'off'),
('schema_version', '14'),
('searchstatus', 'on'),
('showsubforums', 'off'),
('show_logs_in_threads', 'off'),
('sigbbcode', 'on'),
('sitename', '[[domhost]]'),
('siteurl', '[[softurl]]/'),
('smcols', '4'),
('smileyinsert', 'on'),
('smtotal', '16'),
('space_cats', 'off'),
('stats', 'on'),
('subject_in_title', 'on'),
('theme', '1'),
('tickercode', 'html'),
('tickercontents', '<strong>Welcome to your new XMB Forum!</strong>\nWe recommend changing your forums <a href="[[softurl]]/admin/settings.php">settings</a> first.'),
('tickerdelay', '4000'),
('tickerstatus', 'on'),
('timeformat', '12'),
('todaysposts', 'on'),
('topicperpage', '30'),
('u2uquota', '600'),
('whosonlinestatus', 'on');
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]smilies`
--
CREATE TABLE `[[dbprefix]]smilies` (
`type` varchar(15) NOT NULL DEFAULT '',
`code` varchar(40) NOT NULL DEFAULT '',
`url` varchar(40) NOT NULL DEFAULT '',
`id` smallint(6) NOT NULL AUTO_INCREMENT,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=40 ;
--
-- Dumping data for table `[[dbprefix]]smilies`
--
INSERT INTO `[[dbprefix]]smilies` VALUES
('smiley', ':)', 'smile.gif', 1),
('smiley', ':(', 'sad.gif', 2),
('smiley', ':thumbdown:', 'thumbdown.gif', 3),
('smiley', ';)', 'wink.gif', 4),
('smiley', ':cool:', 'cool.gif', 5),
('smiley', ':mad:', 'mad.gif', 6),
('smiley', ':punk:', 'punk.gif', 7),
('smiley', ':blush:', 'blush.gif', 8),
('smiley', ':love:', 'love.gif', 9),
('smiley', ':ninja:', 'ninja.gif', 10),
('smiley', ':fake sniffle:', 'fake_sniffle.gif', 11),
('smiley', ':smilegrin:', 'smilegrin.gif', 12),
('smiley', ':kiss:', 'kiss.gif', 13),
('smiley', ':no:', 'no.gif', 14),
('smiley', ':post:', 'post.gif', 15),
('smiley', ':lol:', 'lol.gif', 16),
('smiley', ':sniffle:', 'sniffle.gif', 17),
('smiley', ':starhit:', 'starhit.gif', 18),
('smiley', ':yes:', 'yes.gif', 19),
('smiley', ':grind:', 'grind.gif', 20),
('smiley', ':crazy:', 'crazy.gif', 21),
('smiley', ':spin:', 'spin.gif', 22),
('smiley', ':exclamation:', 'exclamation.gif', 23),
('smiley', ':bigsmile:', 'bigsmile.gif', 24),
('smiley', ':smirk:', 'smirk.gif', 25),
('smiley', ':borg:', 'borg.gif', 26),
('smiley', ':rolleyes:', 'rolleyes.gif', 27),
('smiley', ':info:', 'info.gif', 28),
('smiley', ':question:', 'question.gif', 29),
('smiley', ':thumbup:', 'thumbup.gif', 30),
('smiley', ':dork:', 'dork.gif', 31),
('picon', '', 'cool.gif', 32),
('picon', '', 'mad.gif', 33),
('picon', '', 'thumbup.gif', 34),
('picon', '', 'thumbdown.gif', 35),
('picon', '', 'post.gif', 36),
('picon', '', 'exclamation.gif', 37),
('picon', '', 'info.gif', 38),
('picon', '', 'question.gif', 39);
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]themes`
--
CREATE TABLE `[[dbprefix]]themes` (
`themeid` smallint(6) NOT NULL AUTO_INCREMENT,
`name` varchar(32) NOT NULL DEFAULT '',
`bgcolor` varchar(25) NOT NULL DEFAULT '',
`altbg1` varchar(15) NOT NULL DEFAULT '',
`altbg2` varchar(15) NOT NULL DEFAULT '',
`link` varchar(15) NOT NULL DEFAULT '',
`bordercolor` varchar(15) NOT NULL DEFAULT '',
`header` varchar(15) NOT NULL DEFAULT '',
`headertext` varchar(15) NOT NULL DEFAULT '',
`top` varchar(15) NOT NULL DEFAULT '',
`catcolor` varchar(15) NOT NULL DEFAULT '',
`tabletext` varchar(15) NOT NULL DEFAULT '',
`text` varchar(15) NOT NULL DEFAULT '',
`borderwidth` varchar(15) NOT NULL DEFAULT '',
`tablewidth` varchar(15) NOT NULL DEFAULT '',
`tablespace` varchar(15) NOT NULL DEFAULT '',
`font` varchar(40) NOT NULL DEFAULT '',
`fontsize` varchar(40) NOT NULL DEFAULT '',
`boardimg` varchar(128) DEFAULT NULL,
`imgdir` varchar(120) NOT NULL DEFAULT '',
`admdir` varchar(120) NOT NULL DEFAULT 'images/admin',
`smdir` varchar(120) NOT NULL DEFAULT 'images/smilies',
`cattext` varchar(15) NOT NULL DEFAULT '',
`version` int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`themeid`),
KEY `name` (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;
--
-- Dumping data for table `[[dbprefix]]themes`
--
INSERT INTO `[[dbprefix]]themes` VALUES
(1, 'XMB Davis', 'bg.gif', '#FFFFFF', '#f4f7f8', '#24404b', '#86a9b6', '#d3dfe4', '#24404b', 'topbg.gif', 'catbar.gif', '#000000', '#000000', '1px', '97%', '5px', 'Tahoma, Arial, Helvetica, Verdana', '11px', 'logo.gif', 'images/davis', 'images/admin', 'images/smilies', '#163c4b', 0);
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]threads`
--
CREATE TABLE `[[dbprefix]]threads` (
`tid` int(11) NOT NULL AUTO_INCREMENT,
`fid` smallint(6) NOT NULL DEFAULT '0',
`subject` varchar(128) NOT NULL DEFAULT '',
`icon` varchar(75) NOT NULL DEFAULT '',
`lastpost` varchar(54) NOT NULL DEFAULT '',
`views` bigint(20) NOT NULL DEFAULT '0',
`replies` int(11) NOT NULL DEFAULT '0',
`author` varchar(32) NOT NULL DEFAULT '',
`closed` varchar(15) NOT NULL DEFAULT '',
`topped` tinyint(4) NOT NULL DEFAULT '0',
`pollopts` tinyint(4) NOT NULL DEFAULT '0',
PRIMARY KEY (`tid`),
KEY `lastpost` (`lastpost`),
KEY `author` (`author`(8)),
KEY `closed` (`closed`),
KEY `forum_optimize` (`fid`,`topped`,`lastpost`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]tokens`
--
CREATE TABLE `[[dbprefix]]tokens` (
`token` varchar(32) NOT NULL,
`username` varchar(32) NOT NULL,
`action` varchar(32) NOT NULL,
`object` varchar(32) NOT NULL,
`expire` int(10) unsigned NOT NULL,
PRIMARY KEY (`token`),
KEY `expire` (`expire`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]u2u`
--
CREATE TABLE `[[dbprefix]]u2u` (
`u2uid` bigint(20) NOT NULL AUTO_INCREMENT,
`msgto` varchar(32) NOT NULL DEFAULT '',
`msgfrom` varchar(32) NOT NULL DEFAULT '',
`type` set('incoming','outgoing','draft') NOT NULL DEFAULT '',
`owner` varchar(32) NOT NULL DEFAULT '',
`folder` varchar(32) NOT NULL DEFAULT '',
`subject` varchar(64) NOT NULL DEFAULT '',
`message` text NOT NULL,
`dateline` int(11) NOT NULL DEFAULT '0',
`readstatus` set('yes','no') NOT NULL DEFAULT '',
`sentstatus` set('yes','no') NOT NULL DEFAULT '',
PRIMARY KEY (`u2uid`),
KEY `msgto` (`msgto`(8)),
KEY `msgfrom` (`msgfrom`(8)),
KEY `folder` (`folder`(8)),
KEY `readstatus` (`readstatus`),
KEY `owner` (`owner`(8))
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]vote_desc`
--
CREATE TABLE `[[dbprefix]]vote_desc` (
`vote_id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
`topic_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`vote_id`),
KEY `topic_id` (`topic_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]vote_results`
--
CREATE TABLE `[[dbprefix]]vote_results` (
`vote_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
`vote_option_id` tinyint(3) unsigned NOT NULL DEFAULT '0',
`vote_option_text` varchar(255) NOT NULL DEFAULT '',
`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;
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]vote_voters`
--
CREATE TABLE `[[dbprefix]]vote_voters` (
`vote_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
`vote_user_id` mediumint(9) NOT NULL DEFAULT '0',
`vote_user_ip` varchar(39) NOT NULL DEFAULT '',
KEY `vote_id` (`vote_id`),
KEY `vote_user_id` (`vote_user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]whosonline`
--
CREATE TABLE `[[dbprefix]]whosonline` (
`username` varchar(32) NOT NULL DEFAULT '',
`ip` varchar(39) NOT NULL DEFAULT '',
`time` int(11) NOT NULL DEFAULT '0',
`location` varchar(150) NOT NULL DEFAULT '',
`invisible` set('1','0') DEFAULT '0',
KEY `username` (`username`(8)),
KEY `ip` (`ip`),
KEY `time` (`time`),
KEY `invisible` (`invisible`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `[[dbprefix]]words`
--
CREATE TABLE `[[dbprefix]]words` (
`find` varchar(60) NOT NULL DEFAULT '',
`replace1` varchar(60) NOT NULL DEFAULT '',
`id` smallint(6) NOT NULL AUTO_INCREMENT,
PRIMARY KEY (`id`),
KEY `find` (`find`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=25 ;
--
-- Dumping data for table `[[dbprefix]]words`
--
INSERT INTO `[[dbprefix]]words` VALUES
('cock', '[b]****[/b]', 1),
('dick', '[b]****[/b]', 2),
('fuck', '[b][Censored][/b]', 3),
('shit', '[b][Censored][/b]', 4),
('faggot', '[b][Censored][/b]', 5),
('bitch', '[b][Censored][/b]', 6),
('whore', '[b][Censored][/b]', 7),
('mofo', '[b][Censored][/b]', 8),
('shite', '[b][Censored][/b]', 9),
('asshole', '[b][Censored][/b]', 10),
('dumbass', '[b][Censored][/b]', 11),
('blowjob', '[b][Censored][/b]', 12),
('porn', '[b][Censored][/b]', 13),
('masturbate', '[b][Censored][/b]', 14),
('masturbation', '[b][Censored][/b]', 15),
('jackoff', '[b][Censored][/b]', 16),
('jack off', '[b][Censored][/b]', 17),
('s h i t', '[b][Censored][/b]', 18),
('f u c k', '[b][Censored][/b]', 19),
('f a g g o t', '[b][Censored][/b]', 20),
('b i t c h', '[b][Censored][/b]', 21),
('cunt', '[b][Censored][/b]', 22),
('c u n t', '[b][Censored][/b]', 23),
('damn', 'dang', 24);
/*!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 */;