Current File : /home/illuminatiprivate.express/public_html/sql/mariston_temp.sql |
-- MySQL dump 10.19 Distrib 10.3.29-MariaDB, for Linux (x86_64)
--
-- Host: localhost Database: mariston_temp
-- ------------------------------------------------------
-- Server version 10.3.29-MariaDB
/*!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 utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Current Database: `mariston_temp`
--
--
-- Table structure for table `administrators`
--
DROP TABLE IF EXISTS `administrators`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `administrators` (
`ADMINID` bigint(20) NOT NULL AUTO_INCREMENT,
`email` varchar(80) NOT NULL DEFAULT '',
`username` varchar(80) NOT NULL DEFAULT '',
`password` varchar(50) NOT NULL DEFAULT '',
PRIMARY KEY (`ADMINID`),
UNIQUE KEY `email` (`email`),
UNIQUE KEY `username` (`username`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `administrators`
--
LOCK TABLES `administrators` WRITE;
/*!40000 ALTER TABLE `administrators` DISABLE KEYS */;
INSERT INTO `administrators` (`ADMINID`, `email`, `username`, `password`) VALUES (1,'[email protected]','Admin','7301673cb1e6624964db94c4d74e741b');
/*!40000 ALTER TABLE `administrators` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `advertisements`
--
DROP TABLE IF EXISTS `advertisements`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `advertisements` (
`AID` bigint(30) NOT NULL AUTO_INCREMENT,
`description` varchar(200) NOT NULL DEFAULT '',
`code` text NOT NULL,
`active` enum('1','0') NOT NULL DEFAULT '1',
PRIMARY KEY (`AID`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `advertisements`
--
LOCK TABLES `advertisements` WRITE;
/*!40000 ALTER TABLE `advertisements` DISABLE KEYS */;
INSERT INTO `advertisements` (`AID`, `description`, `code`, `active`) VALUES (1,'468 x 60 pixels','<div style=\"width:468px; height:60px; border:1px solid #DFDFDF;\" align=\"center\"><br/>Insert Your<br/>Advertisement Here</div>','1'),(2,'120 x 728 pixels','<div style=\"width:120px; height:728px; border:1px solid #DFDFDF;\" align=\"center\"><br/><br/>Insert Your Advertisement Here</div>','1'),(3,'600 x 30 pixels','<div style=\"width:600px; height:30px; border:1px solid #DFDFDF;\" align=\"center\"><div style=\"padding-top: 5px\">Insert Your Advertisement Here</div></div>','1');
/*!40000 ALTER TABLE `advertisements` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `archive`
--
DROP TABLE IF EXISTS `archive`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `archive` (
`ID` bigint(20) NOT NULL AUTO_INCREMENT,
`USERID` bigint(20) NOT NULL DEFAULT 0,
`AID` bigint(20) NOT NULL DEFAULT 0,
PRIMARY KEY (`ID`),
UNIQUE KEY `USERID` (`USERID`,`AID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `archive`
--
LOCK TABLES `archive` WRITE;
/*!40000 ALTER TABLE `archive` DISABLE KEYS */;
/*!40000 ALTER TABLE `archive` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bans_ips`
--
DROP TABLE IF EXISTS `bans_ips`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `bans_ips` (
`ip` varchar(20) NOT NULL,
UNIQUE KEY `ip` (`ip`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bans_ips`
--
LOCK TABLES `bans_ips` WRITE;
/*!40000 ALTER TABLE `bans_ips` DISABLE KEYS */;
/*!40000 ALTER TABLE `bans_ips` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bookmarks`
--
DROP TABLE IF EXISTS `bookmarks`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `bookmarks` (
`BID` bigint(20) NOT NULL AUTO_INCREMENT,
`USERID` bigint(20) NOT NULL DEFAULT 0,
`PID` bigint(20) NOT NULL DEFAULT 0,
`time_added` varchar(20) DEFAULT NULL,
PRIMARY KEY (`BID`),
UNIQUE KEY `USERID` (`USERID`,`PID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bookmarks`
--
LOCK TABLES `bookmarks` WRITE;
/*!40000 ALTER TABLE `bookmarks` DISABLE KEYS */;
/*!40000 ALTER TABLE `bookmarks` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `categories`
--
DROP TABLE IF EXISTS `categories`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `categories` (
`CATID` bigint(20) NOT NULL AUTO_INCREMENT,
`name` varchar(120) NOT NULL DEFAULT '',
`seo` varchar(200) NOT NULL,
`parent` bigint(20) NOT NULL DEFAULT 0,
`details` text NOT NULL,
`mtitle` text NOT NULL,
`mdesc` text NOT NULL,
`mtags` text NOT NULL,
PRIMARY KEY (`CATID`),
UNIQUE KEY `name` (`name`)
) ENGINE=MyISAM AUTO_INCREMENT=15 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `categories`
--
LOCK TABLES `categories` WRITE;
/*!40000 ALTER TABLE `categories` DISABLE KEYS */;
INSERT INTO `categories` (`CATID`, `name`, `seo`, `parent`, `details`, `mtitle`, `mdesc`, `mtags`) VALUES (1,'Gift Ideas','Gift-Ideas',0,'Example description for gift ideas','','',''),(2,'Fun & Bizarre','Fun-Bizarre',0,'Example description for fun and bizarre','','',''),(3,'Graphics','Graphics',0,'Example description for graphics','','',''),(4,'Social Marketing','Social-Marketing',0,'Example description for social marketing','','',''),(5,'Writing','Writing',0,'Example description for writing','','',''),(6,'Advertising','Advertising',0,'Example description for advertising','','',''),(7,'Music & Audio','Music-Audio',0,'Example description for music and audio','','',''),(8,'Tips & Advice','Tips-Advice',0,'Example description for tips and advice','','',''),(9,'Business','Business',0,'Example description for business','','',''),(10,'Technology','Technology',0,'Example description for technology','','',''),(11,'Programming','Programming',0,'Example description for programming','','',''),(12,'Other','Other',0,'Example description for other','','',''),(13,'Silly Stuff','Silly-Stuff',0,'Example description for silly stuff','','',''),(14,'Video','Video',0,'Example description for video','','','');
/*!40000 ALTER TABLE `categories` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `config`
--
DROP TABLE IF EXISTS `config`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `config` (
`setting` varchar(60) NOT NULL DEFAULT '',
`value` text NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `config`
--
LOCK TABLES `config` WRITE;
/*!40000 ALTER TABLE `config` DISABLE KEYS */;
INSERT INTO `config` (`setting`, `value`) VALUES ('site_email','[email protected]'),('site_name','Fiverr Script'),('max_syndicate_results','25'),('maximum_results','1000000'),('emailsender','Admin'),('max_suggest','14'),('items_per_page','17'),('site_slogan','Things people do for money'),('approve_stories','0'),('metadescription','FiverrScript is the fiverr clone script and marketplace script.'),('metakeywords','fiverr script, fiverr clone, fiverr clone script, marketplace script'),('price','5'),('ver','4.1.1'),('price_mode','0'),('approve_suggests','0'),('view_rel_max','7'),('view_more_max','7'),('paypal_email','[email protected]'),('notify_email','[email protected]'),('currency','USD'),('days_before_withdraw','14'),('commission','1'),('FACEBOOK_APP_ID',''),('FACEBOOK_SECRET',''),('enable_fc','0'),('commission_percent','20'),('short_urls','1'),('twitter','Scriptolution'),('vonly','0'),('enable_alertpay','0'),('enable_paypal','1'),('alertpay_email','[email protected]'),('alertpay_currency','USD'),('ap_code',''),('fprice','100'),('fdays','300'),('scriptolution_toprated_rating','99'),('scriptolution_toprated_count','10'),('verify_pm','1'),('def_country','US'),('enable_levels','0'),('level1job','1'),('level2job','3'),('level3job',''),('level2num','10'),('level2rate','90'),('level3num','20'),('level3rate','90'),('scriptolution_proxy_block','0'),('enable_ref','0'),('ref_price','1'),('scriptolution_paypal_confirm','0');
/*!40000 ALTER TABLE `config` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `featured`
--
DROP TABLE IF EXISTS `featured`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `featured` (
`ID` bigint(20) NOT NULL AUTO_INCREMENT,
`PID` bigint(20) NOT NULL DEFAULT 0,
`time` varchar(20) DEFAULT NULL,
`price` varchar(20) NOT NULL DEFAULT '0',
`PAYPAL` bigint(20) NOT NULL,
`exp` int(1) NOT NULL DEFAULT 0,
PRIMARY KEY (`ID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `featured`
--
LOCK TABLES `featured` WRITE;
/*!40000 ALTER TABLE `featured` DISABLE KEYS */;
/*!40000 ALTER TABLE `featured` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `files`
--
DROP TABLE IF EXISTS `files`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `files` (
`FID` bigint(20) NOT NULL AUTO_INCREMENT,
`fname` varchar(400) NOT NULL DEFAULT '',
`time` varchar(20) NOT NULL DEFAULT '',
`ip` varchar(20) NOT NULL,
`s` varchar(100) NOT NULL,
PRIMARY KEY (`FID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `files`
--
LOCK TABLES `files` WRITE;
/*!40000 ALTER TABLE `files` DISABLE KEYS */;
/*!40000 ALTER TABLE `files` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `inbox`
--
DROP TABLE IF EXISTS `inbox`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `inbox` (
`MID` bigint(20) NOT NULL AUTO_INCREMENT,
`MSGTO` bigint(20) NOT NULL DEFAULT 0,
`MSGFROM` bigint(20) NOT NULL DEFAULT 0,
`message` text NOT NULL DEFAULT '',
`PID` bigint(20) NOT NULL DEFAULT 0,
`FID` bigint(20) NOT NULL DEFAULT 0,
`time` varchar(20) NOT NULL DEFAULT '',
`unread` char(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`MID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `inbox`
--
LOCK TABLES `inbox` WRITE;
/*!40000 ALTER TABLE `inbox` DISABLE KEYS */;
/*!40000 ALTER TABLE `inbox` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `inbox2`
--
DROP TABLE IF EXISTS `inbox2`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `inbox2` (
`MID` bigint(20) NOT NULL AUTO_INCREMENT,
`MSGTO` bigint(20) NOT NULL DEFAULT 0,
`MSGFROM` bigint(20) NOT NULL DEFAULT 0,
`message` text NOT NULL DEFAULT '',
`OID` bigint(20) NOT NULL DEFAULT 0,
`FID` bigint(20) NOT NULL DEFAULT 0,
`time` varchar(20) NOT NULL DEFAULT '',
`start` bigint(1) NOT NULL DEFAULT 0,
`action` varchar(100) NOT NULL,
`cancel` bigint(1) NOT NULL DEFAULT 0,
`ctime` varchar(20) NOT NULL,
`CID` bigint(20) NOT NULL DEFAULT 0,
`reject` bigint(1) NOT NULL DEFAULT 0,
PRIMARY KEY (`MID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `inbox2`
--
LOCK TABLES `inbox2` WRITE;
/*!40000 ALTER TABLE `inbox2` DISABLE KEYS */;
/*!40000 ALTER TABLE `inbox2` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `inbox_reports`
--
DROP TABLE IF EXISTS `inbox_reports`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `inbox_reports` (
`RID` bigint(20) NOT NULL AUTO_INCREMENT,
`MID` bigint(20) NOT NULL DEFAULT 0,
`USERID` bigint(20) NOT NULL DEFAULT 0,
`time` varchar(20) NOT NULL DEFAULT '',
PRIMARY KEY (`RID`),
UNIQUE KEY `MID` (`MID`,`USERID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `inbox_reports`
--
LOCK TABLES `inbox_reports` WRITE;
/*!40000 ALTER TABLE `inbox_reports` DISABLE KEYS */;
/*!40000 ALTER TABLE `inbox_reports` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `members`
--
DROP TABLE IF EXISTS `members`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `members` (
`USERID` bigint(20) NOT NULL AUTO_INCREMENT,
`email` varchar(80) NOT NULL DEFAULT '',
`pemail` varchar(100) NOT NULL,
`username` varchar(80) NOT NULL DEFAULT '',
`password` varchar(50) NOT NULL DEFAULT '',
`pwd` varchar(50) NOT NULL,
`funds` decimal(9,2) NOT NULL,
`afunds` decimal(9,2) NOT NULL,
`withdrawn` decimal(9,2) NOT NULL,
`used` decimal(9,2) NOT NULL,
`fullname` varchar(100) NOT NULL DEFAULT '',
`description` text NOT NULL,
`rating` float NOT NULL DEFAULT 0,
`ratingcount` bigint(10) NOT NULL DEFAULT 0,
`profileviews` int(20) NOT NULL DEFAULT 0,
`addtime` varchar(20) NOT NULL DEFAULT '',
`lastlogin` varchar(20) NOT NULL DEFAULT '',
`verified` char(1) NOT NULL DEFAULT '0',
`status` enum('1','0') NOT NULL DEFAULT '1',
`profilepicture` varchar(100) NOT NULL DEFAULT '',
`remember_me_key` varchar(32) DEFAULT NULL,
`remember_me_time` datetime DEFAULT NULL,
`ip` varchar(20) NOT NULL,
`lip` varchar(20) NOT NULL,
`aemail` varchar(100) NOT NULL,
`country` varchar(2) NOT NULL DEFAULT 'US',
`toprated` int(1) NOT NULL DEFAULT 0,
`level` bigint(1) NOT NULL DEFAULT 1,
PRIMARY KEY (`USERID`),
UNIQUE KEY `email` (`email`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `members`
--
LOCK TABLES `members` WRITE;
/*!40000 ALTER TABLE `members` DISABLE KEYS */;
/*!40000 ALTER TABLE `members` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `members_passcode`
--
DROP TABLE IF EXISTS `members_passcode`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `members_passcode` (
`USERID` bigint(20) NOT NULL DEFAULT 0,
`code` varchar(30) NOT NULL DEFAULT '',
PRIMARY KEY (`USERID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `members_passcode`
--
LOCK TABLES `members_passcode` WRITE;
/*!40000 ALTER TABLE `members_passcode` DISABLE KEYS */;
/*!40000 ALTER TABLE `members_passcode` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `members_verifycode`
--
DROP TABLE IF EXISTS `members_verifycode`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `members_verifycode` (
`USERID` bigint(20) NOT NULL DEFAULT 0,
`code` varchar(30) NOT NULL DEFAULT '',
PRIMARY KEY (`USERID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `members_verifycode`
--
LOCK TABLES `members_verifycode` WRITE;
/*!40000 ALTER TABLE `members_verifycode` DISABLE KEYS */;
/*!40000 ALTER TABLE `members_verifycode` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `order_items`
--
DROP TABLE IF EXISTS `order_items`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `order_items` (
`IID` bigint(20) NOT NULL AUTO_INCREMENT,
`PID` bigint(20) NOT NULL,
`USERID` bigint(20) NOT NULL,
`multi` bigint(5) NOT NULL,
`EID` bigint(20) NOT NULL,
`EID2` bigint(20) NOT NULL,
`EID3` bigint(20) NOT NULL,
`totalprice` bigint(20) NOT NULL,
`ctp` decimal(9,2) NOT NULL,
`scriptolutionbuy` bigint(1) NOT NULL DEFAULT 0,
PRIMARY KEY (`IID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `order_items`
--
LOCK TABLES `order_items` WRITE;
/*!40000 ALTER TABLE `order_items` DISABLE KEYS */;
/*!40000 ALTER TABLE `order_items` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `orders`
--
DROP TABLE IF EXISTS `orders`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `orders` (
`OID` bigint(20) NOT NULL AUTO_INCREMENT,
`USERID` bigint(20) NOT NULL DEFAULT 0,
`PID` bigint(20) NOT NULL DEFAULT 0,
`time_added` varchar(20) DEFAULT NULL,
`status` int(1) NOT NULL DEFAULT 0,
`stime` varchar(20) NOT NULL,
`price` varchar(20) NOT NULL DEFAULT '0',
`cltime` varchar(20) NOT NULL,
`IID` bigint(20) NOT NULL,
`late` bigint(1) NOT NULL DEFAULT 0,
PRIMARY KEY (`OID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `orders`
--
LOCK TABLES `orders` WRITE;
/*!40000 ALTER TABLE `orders` DISABLE KEYS */;
/*!40000 ALTER TABLE `orders` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `packs`
--
DROP TABLE IF EXISTS `packs`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `packs` (
`ID` bigint(20) NOT NULL AUTO_INCREMENT,
`pprice` bigint(10) NOT NULL,
`pcom` bigint(10) NOT NULL,
`l1` int(1) NOT NULL DEFAULT 1,
`l2` int(1) NOT NULL DEFAULT 1,
`l3` int(1) NOT NULL DEFAULT 1,
PRIMARY KEY (`ID`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `packs`
--
LOCK TABLES `packs` WRITE;
/*!40000 ALTER TABLE `packs` DISABLE KEYS */;
INSERT INTO `packs` (`ID`, `pprice`, `pcom`, `l1`, `l2`, `l3`) VALUES (1,5,20,1,1,1),(2,10,20,1,1,1),(3,15,20,1,1,1),(4,20,20,1,1,1);
/*!40000 ALTER TABLE `packs` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `payments`
--
DROP TABLE IF EXISTS `payments`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `payments` (
`ID` bigint(20) NOT NULL AUTO_INCREMENT,
`USERID` bigint(20) NOT NULL,
`OID` bigint(20) NOT NULL DEFAULT 0,
`time` varchar(20) DEFAULT NULL,
`price` varchar(20) NOT NULL DEFAULT '0',
`t` bigint(1) NOT NULL,
`PAYPAL` bigint(20) NOT NULL,
`cancel` bigint(1) NOT NULL DEFAULT 0,
`wd` bigint(20) NOT NULL,
`IID` bigint(20) NOT NULL,
`fiverrscriptdotcom_balance` bigint(20) NOT NULL DEFAULT 0,
`fiverrscriptdotcom_available` bigint(20) NOT NULL DEFAULT 0,
PRIMARY KEY (`ID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `payments`
--
LOCK TABLES `payments` WRITE;
/*!40000 ALTER TABLE `payments` DISABLE KEYS */;
/*!40000 ALTER TABLE `payments` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `paypal_table`
--
DROP TABLE IF EXISTS `paypal_table`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `paypal_table` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`payer_id` varchar(60) DEFAULT NULL,
`payment_date` varchar(50) DEFAULT NULL,
`txn_id` varchar(50) DEFAULT NULL,
`first_name` varchar(50) DEFAULT NULL,
`last_name` varchar(50) DEFAULT NULL,
`payer_email` varchar(75) DEFAULT NULL,
`payer_status` varchar(50) DEFAULT NULL,
`payment_type` varchar(50) DEFAULT NULL,
`memo` tinytext DEFAULT NULL,
`item_name` varchar(127) DEFAULT NULL,
`item_number` varchar(127) DEFAULT NULL,
`quantity` int(11) NOT NULL DEFAULT 0,
`mc_gross` decimal(9,2) DEFAULT NULL,
`mc_currency` char(3) DEFAULT NULL,
`address_name` varchar(255) NOT NULL DEFAULT '',
`address_street` varchar(255) NOT NULL DEFAULT '',
`address_city` varchar(255) NOT NULL DEFAULT '',
`address_state` varchar(255) NOT NULL DEFAULT '',
`address_zip` varchar(255) NOT NULL DEFAULT '',
`address_country` varchar(255) NOT NULL DEFAULT '',
`address_status` varchar(255) NOT NULL DEFAULT '',
`payer_business_name` varchar(255) NOT NULL DEFAULT '',
`payment_status` varchar(255) NOT NULL DEFAULT '',
`pending_reason` varchar(255) NOT NULL DEFAULT '',
`reason_code` varchar(255) NOT NULL DEFAULT '',
`txn_type` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`id`),
UNIQUE KEY `txn_id` (`txn_id`),
KEY `txn_id_2` (`txn_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `paypal_table`
--
LOCK TABLES `paypal_table` WRITE;
/*!40000 ALTER TABLE `paypal_table` DISABLE KEYS */;
/*!40000 ALTER TABLE `paypal_table` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `paypal_table2`
--
DROP TABLE IF EXISTS `paypal_table2`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `paypal_table2` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`payer_id` varchar(60) DEFAULT NULL,
`payment_date` varchar(50) DEFAULT NULL,
`txn_id` varchar(50) DEFAULT NULL,
`first_name` varchar(50) DEFAULT NULL,
`last_name` varchar(50) DEFAULT NULL,
`payer_email` varchar(75) DEFAULT NULL,
`payer_status` varchar(50) DEFAULT NULL,
`payment_type` varchar(50) DEFAULT NULL,
`memo` tinytext DEFAULT NULL,
`item_name` varchar(127) DEFAULT NULL,
`item_number` varchar(127) DEFAULT NULL,
`quantity` int(11) NOT NULL DEFAULT 0,
`mc_gross` decimal(9,2) DEFAULT NULL,
`mc_currency` char(3) DEFAULT NULL,
`address_name` varchar(255) NOT NULL DEFAULT '',
`address_street` varchar(255) NOT NULL DEFAULT '',
`address_city` varchar(255) NOT NULL DEFAULT '',
`address_state` varchar(255) NOT NULL DEFAULT '',
`address_zip` varchar(255) NOT NULL DEFAULT '',
`address_country` varchar(255) NOT NULL DEFAULT '',
`address_status` varchar(255) NOT NULL DEFAULT '',
`payer_business_name` varchar(255) NOT NULL DEFAULT '',
`payment_status` varchar(255) NOT NULL DEFAULT '',
`pending_reason` varchar(255) NOT NULL DEFAULT '',
`reason_code` varchar(255) NOT NULL DEFAULT '',
`txn_type` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`id`),
UNIQUE KEY `txn_id` (`txn_id`),
KEY `txn_id_2` (`txn_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `paypal_table2`
--
LOCK TABLES `paypal_table2` WRITE;
/*!40000 ALTER TABLE `paypal_table2` DISABLE KEYS */;
/*!40000 ALTER TABLE `paypal_table2` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `posts`
--
DROP TABLE IF EXISTS `posts`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `posts` (
`PID` bigint(20) NOT NULL AUTO_INCREMENT,
`USERID` bigint(20) NOT NULL DEFAULT 0,
`gtitle` text NOT NULL,
`gtags` text NOT NULL,
`gdesc` text NOT NULL,
`ginst` text NOT NULL,
`category` bigint(20) NOT NULL DEFAULT 0,
`days` bigint(10) NOT NULL DEFAULT 0,
`youtube` varchar(200) NOT NULL,
`feat` bigint(1) NOT NULL DEFAULT 0,
`scriptolution_add_multiple` bigint(3) NOT NULL DEFAULT 0,
`time_added` varchar(20) DEFAULT NULL,
`date_added` date NOT NULL DEFAULT '0000-00-00',
`active` char(1) NOT NULL DEFAULT '',
`last_viewed` varchar(20) NOT NULL DEFAULT '',
`rating` float NOT NULL DEFAULT 0,
`rcount` bigint(20) NOT NULL DEFAULT 0,
`viewcount` bigint(20) NOT NULL DEFAULT 0,
`pip` varchar(20) NOT NULL,
`p1` varchar(20) NOT NULL,
`p2` varchar(20) NOT NULL,
`p3` varchar(20) NOT NULL,
`price` bigint(10) NOT NULL DEFAULT 0,
`rev` bigint(20) NOT NULL DEFAULT 0,
`ctp` decimal(9,2) NOT NULL DEFAULT 0.00,
`short` varchar(200) NOT NULL,
PRIMARY KEY (`PID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `posts`
--
LOCK TABLES `posts` WRITE;
/*!40000 ALTER TABLE `posts` DISABLE KEYS */;
/*!40000 ALTER TABLE `posts` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ratings`
--
DROP TABLE IF EXISTS `ratings`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ratings` (
`RID` bigint(20) NOT NULL AUTO_INCREMENT,
`USERID` bigint(20) NOT NULL DEFAULT 0,
`PID` bigint(20) NOT NULL DEFAULT 0,
`OID` bigint(20) NOT NULL DEFAULT 0,
`RATER` bigint(20) NOT NULL DEFAULT 0,
`time_added` varchar(20) DEFAULT NULL,
`good` bigint(1) NOT NULL DEFAULT 0,
`bad` bigint(1) NOT NULL DEFAULT 0,
`comment` varchar(500) NOT NULL,
PRIMARY KEY (`RID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ratings`
--
LOCK TABLES `ratings` WRITE;
/*!40000 ALTER TABLE `ratings` DISABLE KEYS */;
/*!40000 ALTER TABLE `ratings` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `referrals`
--
DROP TABLE IF EXISTS `referrals`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `referrals` (
`RID` bigint(20) NOT NULL AUTO_INCREMENT,
`USERID` bigint(20) NOT NULL DEFAULT 0,
`REFERRED` bigint(20) NOT NULL DEFAULT 0,
`money` decimal(9,2) NOT NULL,
`time_added` varchar(20) DEFAULT NULL,
`ip` text NOT NULL,
`status` bigint(1) NOT NULL DEFAULT 0,
PRIMARY KEY (`RID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `referrals`
--
LOCK TABLES `referrals` WRITE;
/*!40000 ALTER TABLE `referrals` DISABLE KEYS */;
/*!40000 ALTER TABLE `referrals` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `static`
--
DROP TABLE IF EXISTS `static`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `static` (
`ID` bigint(30) NOT NULL AUTO_INCREMENT,
`title` varchar(255) NOT NULL DEFAULT '',
`value` text NOT NULL,
PRIMARY KEY (`ID`)
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `static`
--
LOCK TABLES `static` WRITE;
/*!40000 ALTER TABLE `static` DISABLE KEYS */;
INSERT INTO `static` (`ID`, `title`, `value`) VALUES (1,'Terms Of Use','Insert your terms of use information here.<br><br>\r\n\r\nHTML is accepted.'),(2,'Privacy Policy','Insert your privacy policy information here.<br><br>\r\n\r\nHTML is accepted.'),(3,'About Us','Insert your about us information here.<br><br>\r\n\r\nHTML is accepted.'),(4,'Advertising','Insert your advertising information here.<br><br>\r\n\r\nHTML is accepted.'),(5,'Contact Us','Insert your contact us information here.<br><br>\r\n\r\nHTML is accepted.'),(6,'Job Levels','Insert your information about job levels here.<br><br>\r\n\r\nHTML is accepted.');
/*!40000 ALTER TABLE `static` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wants`
--
DROP TABLE IF EXISTS `wants`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wants` (
`WID` bigint(20) NOT NULL AUTO_INCREMENT,
`USERID` bigint(20) NOT NULL DEFAULT 0,
`want` text NOT NULL,
`category` bigint(20) NOT NULL DEFAULT 0,
`time_added` varchar(20) DEFAULT NULL,
`date_added` date NOT NULL DEFAULT '0000-00-00',
`active` char(1) NOT NULL DEFAULT '',
PRIMARY KEY (`WID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wants`
--
LOCK TABLES `wants` WRITE;
/*!40000 ALTER TABLE `wants` DISABLE KEYS */;
/*!40000 ALTER TABLE `wants` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `withdraw_requests`
--
DROP TABLE IF EXISTS `withdraw_requests`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `withdraw_requests` (
`WID` bigint(20) NOT NULL AUTO_INCREMENT,
`USERID` bigint(20) NOT NULL DEFAULT 0,
`time_added` varchar(20) DEFAULT NULL,
`ap` bigint(1) NOT NULL DEFAULT 0,
PRIMARY KEY (`WID`),
UNIQUE KEY `USERID` (`USERID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `withdraw_requests`
--
LOCK TABLES `withdraw_requests` WRITE;
/*!40000 ALTER TABLE `withdraw_requests` DISABLE KEYS */;
/*!40000 ALTER TABLE `withdraw_requests` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping events for database 'mariston_temp'
--
--
-- Dumping routines for database 'mariston_temp'
--
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!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 */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2021-05-27 16:17:32