Your IP : 18.117.170.80
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: `paste22`
--
-- --------------------------------------------------------
--
-- Table structure for table `admin`
--
CREATE TABLE `admin` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user` varchar(250) DEFAULT NULL,
`pass` varchar(250) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
--
-- Dumping data for table `admin`
--
INSERT INTO `admin` VALUES
(1, '[[admin_username]]', '[[admin_pass]]');
-- --------------------------------------------------------
--
-- Table structure for table `admin_history`
--
CREATE TABLE `admin_history` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`last_date` varchar(255) DEFAULT NULL,
`ip` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `ads`
--
CREATE TABLE `ads` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`text_ads` text,
`ads_1` text,
`ads_2` text,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
--
-- Dumping data for table `ads`
--
INSERT INTO `ads` VALUES
(1, '', '', '');
-- --------------------------------------------------------
--
-- Table structure for table `ban_user`
--
CREATE TABLE `ban_user` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`ip` varchar(255) DEFAULT NULL,
`last_date` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `captcha`
--
CREATE TABLE `captcha` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`cap_e` varchar(255) DEFAULT NULL,
`mode` varchar(255) DEFAULT NULL,
`mul` varchar(255) DEFAULT NULL,
`allowed` text,
`color` mediumtext,
`recaptcha_sitekey` text,
`recaptcha_secretkey` text,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
--
-- Dumping data for table `captcha`
--
INSERT INTO `captcha` VALUES
(1, 'off', 'Normal', 'off', 'ABCDEFGHIJKLMNOPQRSTUVYXYZabcdefghijklmnopqrstuvwxyz0123456789', '#000000', '', '');
-- --------------------------------------------------------
--
-- Table structure for table `interface`
--
CREATE TABLE `interface` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`theme` text,
`lang` text,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
--
-- Dumping data for table `interface`
--
INSERT INTO `interface` VALUES
(1, 'default', 'en.php');
-- --------------------------------------------------------
--
-- Table structure for table `mail`
--
CREATE TABLE `mail` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`verification` text,
`smtp_host` text,
`smtp_username` text,
`smtp_password` text,
`smtp_port` text,
`protocol` text,
`auth` text,
`socket` text,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ;
--
-- Dumping data for table `mail`
--
INSERT INTO `mail` VALUES
(1, 'enabled', '', '', '', '', '1', 'true', 'ssl'),
(2, 'enabled', '', '', '', '', '1', 'true', 'ssl');
-- --------------------------------------------------------
--
-- Table structure for table `pages`
--
CREATE TABLE `pages` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`last_date` varchar(255) DEFAULT NULL,
`page_name` varchar(255) DEFAULT NULL,
`page_title` mediumtext,
`page_content` longtext,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `page_view`
--
CREATE TABLE `page_view` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`date` varchar(255) DEFAULT NULL,
`tpage` varchar(255) DEFAULT NULL,
`tvisit` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `pastes`
--
CREATE TABLE `pastes` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` text,
`content` longtext,
`visible` text,
`code` text,
`expiry` text,
`password` text,
`encrypt` text,
`member` text,
`date` text,
`ip` text,
`now_time` text,
`views` text,
`s_date` text,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `sitemap_options`
--
CREATE TABLE `sitemap_options` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`priority` varchar(255) DEFAULT NULL,
`changefreq` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
--
-- Dumping data for table `sitemap_options`
--
INSERT INTO `sitemap_options` VALUES
(1, '0.9', 'daily');
-- --------------------------------------------------------
--
-- Table structure for table `site_info`
--
CREATE TABLE `site_info` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(255) DEFAULT NULL,
`des` mediumtext,
`keyword` mediumtext,
`site_name` varchar(255) DEFAULT NULL,
`email` varchar(255) DEFAULT NULL,
`twit` varchar(4000) DEFAULT NULL,
`face` varchar(4000) DEFAULT NULL,
`gplus` varchar(4000) DEFAULT NULL,
`ga` varchar(255) DEFAULT NULL,
`additional_scripts` text,
`baseurl` text,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
--
-- Dumping data for table `site_info`
--
INSERT INTO `site_info` VALUES
(1, 'Paste', 'Paste can store text, source code or sensitive data for a set period of time.', 'paste,pastebin.com,pastebin,text,paste,online paste', 'Paste', '', 'https://twitter.com/', 'https://www.facebook.com/', 'https://plus.google.com/', 'UA-', '', '//[[domhost]][[relativeurl]]');
-- --------------------------------------------------------
--
-- Table structure for table `site_permissions`
--
CREATE TABLE `site_permissions` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`disableguest` varchar(255) DEFAULT NULL,
`siteprivate` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ;
--
-- Dumping data for table `site_permissions`
--
INSERT INTO `site_permissions` VALUES
(1, 'on', 'on'),
(2, 'off', 'off');
-- --------------------------------------------------------
--
-- Table structure for table `users`
--
CREATE TABLE `users` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`oauth_uid` text,
`username` text,
`email_id` text,
`full_name` text,
`platform` text,
`password` text,
`verified` text,
`picture` text,
`date` text,
`ip` text,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 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 */;