leftypol/install.sql

262 lines
6.5 KiB
MySQL
Raw Normal View History

2010-11-02 11:06:37 +00:00
-- phpMyAdmin SQL Dump
2011-10-08 17:05:58 +00:00
-- version 3.4.2
2010-11-02 11:06:37 +00:00
-- http://www.phpmyadmin.net
--
2011-10-08 17:05:58 +00:00
-- Host: localhost
-- Generation Time: Apr 12, 2012 at 11:22 PM
-- Server version: 5.1.61
-- PHP Version: 5.3.3-7+squeeze8
2010-11-02 11:06:37 +00:00
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
2011-10-08 17:05:58 +00:00
SET time_zone = "+00:00";
2010-11-02 11:06:37 +00:00
2011-04-06 14:40:32 +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 */;
2011-02-20 06:23:21 +00:00
2011-10-08 17:05:58 +00:00
--
-- Database: `tinyboard`
--
2011-02-20 06:23:21 +00:00
-- --------------------------------------------------------
--
-- Table structure for table `antispam`
--
CREATE TABLE IF NOT EXISTS `antispam` (
`board` varchar(255) NOT NULL,
`thread` int(11) DEFAULT NULL,
2012-04-18 15:32:02 +00:00
`hash` char(40) NOT NULL,
`created` int(11) NOT NULL,
`expires` int(11) DEFAULT NULL,
`passed` smallint(6) NOT NULL,
PRIMARY KEY (`hash`),
KEY `board` (`board`,`thread`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
2010-11-02 11:06:37 +00:00
--
2011-02-16 06:01:38 +00:00
-- Table structure for table `bans`
--
CREATE TABLE IF NOT EXISTS `bans` (
2012-08-26 16:52:31 +00:00
`id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT,
2011-02-17 09:33:52 +00:00
`ip` varchar(45) NOT NULL,
2011-02-16 06:01:38 +00:00
`mod` int(11) NOT NULL COMMENT 'which mod made the ban',
`set` int(11) NOT NULL,
`expires` int(11) DEFAULT NULL,
2011-07-27 03:02:49 +00:00
`reason` text,
`board` varchar(120) DEFAULT NULL,
`seen` tinyint(1) NOT NULL,
PRIMARY KEY (`id`),
2011-10-08 17:05:58 +00:00
FULLTEXT KEY `ip` (`ip`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
2011-02-16 06:01:38 +00:00
2010-11-02 11:06:37 +00:00
-- --------------------------------------------------------
2010-11-30 09:50:06 +00:00
--
-- Table structure for table `boards`
--
CREATE TABLE IF NOT EXISTS `boards` (
`uri` varchar(120) NOT NULL,
`title` tinytext NOT NULL,
`subtitle` tinytext,
PRIMARY KEY (`uri`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2010-11-30 09:50:06 +00:00
--
-- Dumping data for table `boards`
--
INSERT INTO `boards` (`uri`, `title`, `subtitle`) VALUES
('b', 'Beta', 'In development.');
-- --------------------------------------------------------
--
-- Table structure for table `cites`
--
CREATE TABLE IF NOT EXISTS `cites` (
`board` varchar(8) NOT NULL,
`post` int(11) NOT NULL,
`target_board` varchar(8) NOT NULL,
`target` int(11) NOT NULL,
KEY `target` (`target_board`,`target`),
KEY `post` (`board`,`post`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2010-11-30 09:50:06 +00:00
2011-04-06 14:40:32 +00:00
-- --------------------------------------------------------
--
-- Table structure for table `ip_notes`
--
CREATE TABLE IF NOT EXISTS `ip_notes` (
2012-08-26 16:52:31 +00:00
`id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT,
2011-04-06 14:40:32 +00:00
`ip` varchar(45) NOT NULL,
`mod` int(11) DEFAULT NULL,
`time` int(11) NOT NULL,
`body` text NOT NULL,
2011-10-08 17:05:58 +00:00
UNIQUE KEY `id` (`id`),
KEY `ip` (`ip`)
2011-09-10 12:26:52 +00:00
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
2011-04-06 14:40:32 +00:00
2011-02-16 06:01:38 +00:00
-- --------------------------------------------------------
--
-- Table structure for table `modlogs`
--
CREATE TABLE IF NOT EXISTS `modlogs` (
`mod` int(11) NOT NULL,
2011-02-17 09:32:11 +00:00
`ip` varchar(45) NOT NULL,
`board` varchar(120) DEFAULT NULL,
2011-02-16 06:01:38 +00:00
`time` int(11) NOT NULL,
2011-10-08 17:05:58 +00:00
`text` text NOT NULL,
KEY `time` (`time`)
2011-09-10 12:26:52 +00:00
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2011-02-16 06:01:38 +00:00
-- --------------------------------------------------------
--
-- Table structure for table `mods`
--
CREATE TABLE IF NOT EXISTS `mods` (
2012-08-26 16:52:31 +00:00
`id` smallint(6) UNSIGNED NOT NULL AUTO_INCREMENT,
2011-02-16 06:01:38 +00:00
`username` varchar(30) NOT NULL,
`password` char(40) NOT NULL COMMENT 'SHA1',
`type` smallint(1) NOT NULL COMMENT '0: janitor, 1: mod, 2: admin',
2011-10-08 17:05:58 +00:00
`boards` text NOT NULL,
2011-02-16 06:01:38 +00:00
PRIMARY KEY (`id`),
UNIQUE KEY `id` (`id`,`username`)
2011-09-10 12:26:52 +00:00
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
2011-02-16 06:01:38 +00:00
--
-- Dumping data for table `mods`
--
INSERT INTO `mods` (`id`, `username`, `password`, `type`, `boards`) VALUES
(1, 'admin', '5baa61e4c9b93f3f0682250b6cf8331b7ee68fd8', 2, '*');
2011-02-16 06:01:38 +00:00
-- --------------------------------------------------------
--
-- Table structure for table `mutes`
--
CREATE TABLE IF NOT EXISTS `mutes` (
2011-02-17 09:32:11 +00:00
`ip` varchar(45) NOT NULL,
2011-10-08 17:05:58 +00:00
`time` int(11) NOT NULL,
KEY `ip` (`ip`)
2011-02-16 06:01:38 +00:00
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2011-10-08 17:05:58 +00:00
-- --------------------------------------------------------
2011-02-16 06:01:38 +00:00
--
2011-10-08 17:05:58 +00:00
-- Table structure for table `news`
2011-02-16 06:01:38 +00:00
--
2011-10-08 17:05:58 +00:00
CREATE TABLE IF NOT EXISTS `news` (
2012-08-26 16:52:31 +00:00
`id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT,
2011-10-08 17:05:58 +00:00
`name` text NOT NULL,
`time` int(11) NOT NULL,
`subject` text NOT NULL,
`body` text NOT NULL,
UNIQUE KEY `id` (`id`),
KEY `time` (`time`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
2011-02-16 06:01:38 +00:00
2011-04-06 14:40:32 +00:00
-- --------------------------------------------------------
--
-- Table structure for table `noticeboard`
--
CREATE TABLE IF NOT EXISTS `noticeboard` (
2012-08-26 16:52:31 +00:00
`id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT,
2011-04-06 14:40:32 +00:00
`mod` int(11) NOT NULL,
`time` int(11) NOT NULL,
`subject` text NOT NULL,
`body` text NOT NULL,
UNIQUE KEY `id` (`id`)
2011-09-10 12:26:52 +00:00
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
2011-04-06 14:40:32 +00:00
-- --------------------------------------------------------
--
-- Table structure for table `pms`
--
CREATE TABLE IF NOT EXISTS `pms` (
2012-08-26 16:52:31 +00:00
`id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT,
2011-04-06 14:40:32 +00:00
`sender` int(11) NOT NULL,
`to` int(11) NOT NULL,
`message` text NOT NULL,
`time` int(11) NOT NULL,
`unread` tinyint(1) NOT NULL,
2011-10-08 17:05:58 +00:00
PRIMARY KEY (`id`)
2011-09-10 12:26:52 +00:00
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
2011-04-06 14:40:32 +00:00
2010-11-30 09:50:06 +00:00
-- --------------------------------------------------------
2010-12-02 07:30:13 +00:00
--
2011-04-06 14:40:32 +00:00
-- Table structure for table `reports`
2011-03-30 10:47:06 +00:00
--
2011-04-06 14:40:32 +00:00
CREATE TABLE IF NOT EXISTS `reports` (
2012-08-26 16:52:31 +00:00
`id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT,
2011-03-30 10:47:06 +00:00
`time` int(11) NOT NULL,
2011-04-06 14:40:32 +00:00
`ip` varchar(45) NOT NULL,
`board` varchar(120) DEFAULT NULL,
2011-04-06 14:40:32 +00:00
`post` int(11) NOT NULL,
`reason` text NOT NULL,
2011-10-08 17:05:58 +00:00
PRIMARY KEY (`id`)
2011-09-10 12:26:52 +00:00
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
2011-03-30 10:47:06 +00:00
2011-04-05 07:36:00 +00:00
-- --------------------------------------------------------
--
2011-04-06 14:40:32 +00:00
-- Table structure for table `robot`
2011-04-05 07:36:00 +00:00
--
2011-04-06 14:40:32 +00:00
CREATE TABLE IF NOT EXISTS `robot` (
2011-10-08 17:05:58 +00:00
`hash` varchar(40) NOT NULL COMMENT 'SHA1',
PRIMARY KEY (`hash`)
2011-09-10 12:26:52 +00:00
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2011-04-05 07:36:00 +00:00
2011-04-13 14:24:49 +00:00
-- --------------------------------------------------------
2013-07-20 23:48:14 +00:00
--
-- Table structure for table `search_queries`
--
CREATE TABLE IF NOT EXISTS `search_queries` (
`ip` varchar(39) NOT NULL,
`time` int(11) NOT NULL,
`query` text NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
2011-04-13 14:24:49 +00:00
--
-- Table structure for table `theme_settings`
--
CREATE TABLE IF NOT EXISTS `theme_settings` (
`theme` varchar(40) NOT NULL,
`name` varchar(40) DEFAULT NULL,
2011-10-08 17:05:58 +00:00
`value` text,
KEY `theme` (`theme`)
2011-09-10 12:26:52 +00:00
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2011-04-13 14:24:49 +00:00
2011-10-08 17:05:58 +00:00
/*!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 */;