Advertisement
Zeluboba

Ultrabans MySQL Tables

Aug 1st, 2013
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQL 1.01 KB | None | 0 0
  1.  
  2. SET FOREIGN_KEY_CHECKS=0;
  3. -- ----------------------------
  4. -- Table structure for `banlist`
  5. -- ----------------------------
  6. DROP TABLE IF EXISTS `banlist`;
  7. CREATE TABLE `banlist` (
  8.   `name` VARCHAR(32) NOT NULL,
  9.   `reason` text NOT NULL,
  10.   `admin` VARCHAR(32) NOT NULL,
  11.   `time` BIGINT(20) NOT NULL,
  12.   `temptime` BIGINT(20) NOT NULL,
  13.   `id` INT(11) NOT NULL AUTO_INCREMENT,
  14.   `type` INT(1) NOT NULL DEFAULT '0',
  15.   PRIMARY KEY (`id`) USING BTREE
  16. ) ENGINE=InnoDB AUTO_INCREMENT=100 DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC;
  17.  
  18. -- ----------------------------
  19. -- Records of banlist
  20. -- ----------------------------
  21.  
  22. -- ----------------------------
  23. -- Table structure for `banlistip`
  24. -- ----------------------------
  25. DROP TABLE IF EXISTS `banlistip`;
  26. CREATE TABLE `banlistip` (
  27.   `name` VARCHAR(32) NOT NULL,
  28.   `lastip` tinytext NOT NULL,
  29.   PRIMARY KEY (`name`)
  30. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC;
  31.  
  32. -- ----------------------------
  33. -- Records of banlistip
  34. -- ----------------------------
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement