Advertisement
paroxsitic

Untitled

Aug 12th, 2011
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PL/SQL 3.75 KB | None | 0 0
  1. -- phpMyAdmin SQL Dump
  2. -- version 3.3.7deb5
  3. -- http://www.phpmyadmin.net
  4. --
  5. -- Host: localhost
  6. -- Generation Time: Aug 12, 2011 at 07:29 PM
  7. -- Server version: 5.1.49
  8. -- PHP Version: 5.3.3-7+squeeze1
  9.  
  10. SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
  11.  
  12.  
  13. /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
  14. /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
  15. /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
  16. /*!40101 SET NAMES utf8 */;
  17.  
  18. --
  19. -- Database: `records`
  20. --
  21.  
  22. -- --------------------------------------------------------
  23.  
  24. --
  25. -- Table structure for table `active_records`
  26. --
  27.  
  28. CREATE TABLE IF NOT EXISTS `active_records` (
  29.   `ID` int(11) NOT NULL AUTO_INCREMENT,
  30.   `owner` CHAR(16) NOT NULL COMMENT 'Panel username for the owner panel.',
  31.   `owner_password` text NOT NULL,
  32.   `port` int(11) NOT NULL,
  33.   `address` CHAR(50) NOT NULL,
  34.   `extention` text NOT NULL,
  35.   `users` int(11) NOT NULL,
  36.   `SPACE` int(11) NOT NULL,
  37.   `email` text NOT NULL,
  38.   `contact` text,
  39.   `contact_type` text,
  40.   `order_id` text,
  41.   `signup_date` DATE NOT NULL,
  42.   `last_payment_date` DATE NOT NULL,
  43.   `payment_method` text NOT NULL,
  44.   `payment_contact` text NOT NULL,
  45.   `months_left` int(11) NOT NULL,
  46.   `months_bought` int(11) NOT NULL,
  47.   `months_reward_left` int(11) NOT NULL,
  48.   `months_rewarded` int(11) NOT NULL,
  49.   `ip` text NOT NULL,
  50.   PRIMARY KEY (`ID`),
  51.   UNIQUE KEY `owner` (`owner`),
  52.   UNIQUE KEY `address` (`address`)
  53. ) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
  54.  
  55. -- --------------------------------------------------------
  56.  
  57. --
  58. -- Table structure for table `inactive_records`
  59. --
  60.  
  61. CREATE TABLE IF NOT EXISTS `inactive_records` (
  62.   `ID` int(11) NOT NULL AUTO_INCREMENT,
  63.   `owner` text NOT NULL,
  64.   `owner_password` text NOT NULL,
  65.   `port` int(11) NOT NULL,
  66.   `address` text NOT NULL,
  67.   `extention` text NOT NULL,
  68.   `users` int(11) NOT NULL,
  69.   `SPACE` int(11) NOT NULL,
  70.   `email` text NOT NULL,
  71.   `contact` text,
  72.   `contact_type` text,
  73.   `order_id` text,
  74.   `signup_date` DATE NOT NULL,
  75.   `payment_method` text NOT NULL,
  76.   `payment_contact` text NOT NULL,
  77.   `months_left` int(11) NOT NULL,
  78.   `months_bought` int(11) NOT NULL,
  79.   `months_reward_left` int(11) NOT NULL,
  80.   `months_rewarded` int(11) NOT NULL,
  81.   `ip` text NOT NULL,
  82.   `suspension_date` DATE NOT NULL,
  83.   `reasoning` text NOT NULL,
  84.   PRIMARY KEY (`ID`)
  85. ) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
  86.  
  87. -- --------------------------------------------------------
  88.  
  89. --
  90. -- Table structure for table `ips`
  91. --
  92.  
  93. CREATE TABLE IF NOT EXISTS `ips` (
  94.   `IP` text NOT NULL
  95. ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
  96.  
  97. -- --------------------------------------------------------
  98.  
  99. --
  100. -- Table structure for table `order_attempts`
  101. --
  102.  
  103. CREATE TABLE IF NOT EXISTS `order_attempts` (
  104.   `ID` int(11) NOT NULL AUTO_INCREMENT,
  105.   `owner` text NOT NULL,
  106.   `owner_password` text NOT NULL,
  107.   `port` int(11) NOT NULL,
  108.   `address` text NOT NULL,
  109.   `extention` text NOT NULL,
  110.   `users` int(11) NOT NULL,
  111.   `SPACE` int(11) NOT NULL,
  112.   `email` text NOT NULL,
  113.   `contact` text,
  114.   `contact_type` text,
  115.   `order_id` text,
  116.   `signup_date` DATE NOT NULL,
  117.   `payment_method` text NOT NULL,
  118.   `months_left` int(11) NOT NULL,
  119.   `months_bought` int(11) NOT NULL,
  120.   `referral` text NOT NULL,
  121.   `ip` text NOT NULL,
  122.   PRIMARY KEY (`ID`)
  123. ) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
  124.  
  125. -- --------------------------------------------------------
  126.  
  127. --
  128. -- Table structure for table `users`
  129. --
  130.  
  131. CREATE TABLE IF NOT EXISTS `users` (
  132.   `username` CHAR(16) NOT NULL,
  133.   `password` text NOT NULL,
  134.   `address` CHAR(50) NOT NULL,
  135.   `TYPE` text NOT NULL,
  136.   PRIMARY KEY (`username`),
  137.   KEY `address` (`address`)
  138. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement