Source code of Leftypol imageboard
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

287 lines
6.3 KiB

14 years ago
-- phpMyAdmin SQL Dump
13 years ago
-- version 3.3.9
14 years ago
-- http://www.phpmyadmin.net
--
-- Generation Time: Apr 07, 2011 at 12:37 AM
14 years ago
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
/*!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 */;
-- --------------------------------------------------------
14 years ago
--
13 years ago
-- Table structure for table `bans`
--
CREATE TABLE IF NOT EXISTS `bans` (
13 years ago
`ip` varchar(45) NOT NULL,
13 years ago
`mod` int(11) NOT NULL COMMENT 'which mod made the ban',
`set` int(11) NOT NULL,
`expires` int(11) DEFAULT NULL,
`reason` text
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `bans`
14 years ago
--
13 years ago
14 years ago
-- --------------------------------------------------------
14 years ago
--
-- Table structure for table `boards`
--
CREATE TABLE IF NOT EXISTS `boards` (
`id` smallint(6) NOT NULL AUTO_INCREMENT,
`uri` varchar(8) NOT NULL,
`title` varchar(20) NOT NULL,
`subtitle` varchar(40) DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `uri` (`uri`),
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
14 years ago
--
-- Dumping data for table `boards`
--
INSERT INTO `boards` (`id`, `uri`, `title`, `subtitle`) VALUES
(1, 'b', 'Beta', 'In development.');
-- --------------------------------------------------------
--
-- Table structure for table `ip_notes`
--
CREATE TABLE IF NOT EXISTS `ip_notes` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`ip` varchar(45) NOT NULL,
`mod` int(11) DEFAULT NULL,
`time` int(11) NOT NULL,
`body` text NOT NULL,
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Dumping data for table `ip_notes`
--
13 years ago
-- --------------------------------------------------------
--
-- Table structure for table `modlogs`
--
CREATE TABLE IF NOT EXISTS `modlogs` (
`mod` int(11) NOT NULL,
13 years ago
`ip` varchar(45) NOT NULL,
`board` int(11) DEFAULT NULL,
13 years ago
`time` int(11) NOT NULL,
`text` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `modlogs`
--
-- --------------------------------------------------------
--
-- Table structure for table `mods`
--
CREATE TABLE IF NOT EXISTS `mods` (
`id` smallint(6) NOT NULL AUTO_INCREMENT,
`username` varchar(30) NOT NULL,
`password` char(40) NOT NULL COMMENT 'SHA1',
`type` smallint(1) NOT NULL COMMENT '0: janitor, 1: mod, 2: admin',
PRIMARY KEY (`id`),
UNIQUE KEY `id` (`id`,`username`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
13 years ago
--
-- Dumping data for table `mods`
--
INSERT INTO `mods` (`id`, `username`, `password`, `type`) VALUES
(1, 'admin', '5baa61e4c9b93f3f0682250b6cf8331b7ee68fd8', 2);
-- --------------------------------------------------------
--
-- Table structure for table `mutes`
--
CREATE TABLE IF NOT EXISTS `mutes` (
13 years ago
`ip` varchar(45) NOT NULL,
13 years ago
`time` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- Dumping data for table `mutes`
--
-- --------------------------------------------------------
--
-- Table structure for table `noticeboard`
--
CREATE TABLE IF NOT EXISTS `noticeboard` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`mod` int(11) NOT NULL,
`time` int(11) NOT NULL,
`subject` text NOT NULL,
`body` text NOT NULL,
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Dumping data for table `noticeboard`
--
-- --------------------------------------------------------
--
-- Table structure for table `pms`
--
CREATE TABLE IF NOT EXISTS `pms` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`sender` int(11) NOT NULL,
`to` int(11) NOT NULL,
`message` text NOT NULL,
`time` int(11) NOT NULL,
`unread` tinyint(1) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Dumping data for table `pms`
--
14 years ago
-- --------------------------------------------------------
14 years ago
--
-- Table structure for table `posts_b`
14 years ago
--
CREATE TABLE IF NOT EXISTS `posts_b` (
14 years ago
`id` int(11) NOT NULL AUTO_INCREMENT,
`thread` int(11) DEFAULT NULL,
`subject` varchar(50) NOT NULL,
`email` varchar(30) NOT NULL,
`name` varchar(35) NOT NULL,
`trip` varchar(15) DEFAULT NULL,
`capcode` varchar(50) DEFAULT NULL,
14 years ago
`body` text NOT NULL,
`time` int(11) NOT NULL,
`bump` int(11) DEFAULT NULL,
`thumb` varchar(50) DEFAULT NULL,
`thumbwidth` int(11) DEFAULT NULL,
`thumbheight` int(11) DEFAULT NULL,
`file` varchar(50) DEFAULT NULL,
`filewidth` int(11) DEFAULT NULL,
`fileheight` int(11) DEFAULT NULL,
`filesize` int(11) DEFAULT NULL,
`filename` varchar(30) DEFAULT NULL,
`filehash` varchar(40) DEFAULT NULL,
14 years ago
`password` varchar(20) DEFAULT NULL,
13 years ago
`ip` varchar(45) NOT NULL,
14 years ago
`sticky` int(1) NOT NULL,
`locked` int(1) NOT NULL,
13 years ago
`embed` text,
14 years ago
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
14 years ago
--
-- Dumping data for table `posts_b`
14 years ago
--
14 years ago
13 years ago
-- --------------------------------------------------------
14 years ago
--
-- Table structure for table `reports`
--
CREATE TABLE IF NOT EXISTS `reports` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`time` int(11) NOT NULL,
`ip` varchar(45) NOT NULL,
`board` smallint(6) NOT NULL,
`post` int(11) NOT NULL,
`reason` text NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Dumping data for table `reports`
--
13 years ago
13 years ago
-- --------------------------------------------------------
--
-- Table structure for table `robot`
13 years ago
--
CREATE TABLE IF NOT EXISTS `robot` (
`hash` varchar(40) NOT NULL COMMENT 'SHA1'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
13 years ago
--
-- Dumping data for table `robot`
13 years ago
--
13 years ago
-- --------------------------------------------------------
--
-- Table structure for table `theme_settings`
--
CREATE TABLE IF NOT EXISTS `theme_settings` (
`theme` varchar(40) NOT NULL,
`name` varchar(40) DEFAULT NULL,
`value` text
13 years ago
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `theme_settings`
--
-- --------------------------------------------------------
--
-- Table structure for table `news`
--
CREATE TABLE IF NOT EXISTS `news` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` text NOT NULL,
`time` int(11) NOT NULL,
`subject` text NOT NULL,
`body` text NOT NULL,
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Dumping data for table `news`
--