Advertisement
Guest User

Untitled

a guest
May 8th, 2017
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.03 KB | None | 0 0
  1. /*
  2. Navicat MySQL Data Transfer
  3.  
  4. Source Server : root
  5. Source Server Version : 50516
  6. Source Host : localhost:3306
  7. Source Database : bebbo
  8.  
  9. Target Server Type : MYSQL
  10. Target Server Version : 50516
  11. File Encoding : 65001
  12.  
  13. Date: 2017-05-08 21:14:03
  14. */
  15.  
  16. SET FOREIGN_KEY_CHECKS=0;
  17.  
  18. -- ----------------------------
  19. -- Table structure for `room_chat_styles`
  20. -- ----------------------------
  21. DROP TABLE IF EXISTS `room_chat_styles`;
  22. CREATE TABLE `room_chat_styles` (
  23. `id` int(11) NOT NULL,
  24. `name` varchar(25) DEFAULT '',
  25. `required_right` varchar(25) DEFAULT '',
  26. PRIMARY KEY (`id`)
  27. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  28.  
  29. -- ----------------------------
  30. -- Records of room_chat_styles
  31. -- ----------------------------
  32. INSERT INTO `room_chat_styles` VALUES ('0', 'normal_chat', '');
  33. INSERT INTO `room_chat_styles` VALUES ('1', '', 'mod_tool');
  34. INSERT INTO `room_chat_styles` VALUES ('2', '', 'mod_tool');
  35. INSERT INTO `room_chat_styles` VALUES ('3', '', '');
  36. INSERT INTO `room_chat_styles` VALUES ('4', '', '');
  37. INSERT INTO `room_chat_styles` VALUES ('5', '', '');
  38. INSERT INTO `room_chat_styles` VALUES ('6', '', '');
  39. INSERT INTO `room_chat_styles` VALUES ('7', '', '');
  40. INSERT INTO `room_chat_styles` VALUES ('8', '', '');
  41. INSERT INTO `room_chat_styles` VALUES ('9', 'zombie_hand', '');
  42. INSERT INTO `room_chat_styles` VALUES ('10', 'skeleton', '');
  43. INSERT INTO `room_chat_styles` VALUES ('11', '', '');
  44. INSERT INTO `room_chat_styles` VALUES ('12', '', '');
  45. INSERT INTO `room_chat_styles` VALUES ('13', '', '');
  46. INSERT INTO `room_chat_styles` VALUES ('14', '', '');
  47. INSERT INTO `room_chat_styles` VALUES ('15', '', '');
  48. INSERT INTO `room_chat_styles` VALUES ('16', '', '');
  49. INSERT INTO `room_chat_styles` VALUES ('17', '', '');
  50. INSERT INTO `room_chat_styles` VALUES ('18', '', '');
  51. INSERT INTO `room_chat_styles` VALUES ('19', 'piglet', '');
  52. INSERT INTO `room_chat_styles` VALUES ('20', 'sausagedog', '');
  53. INSERT INTO `room_chat_styles` VALUES ('21', 'firingmylazer', '');
  54. INSERT INTO `room_chat_styles` VALUES ('22', 'dragon', '');
  55. INSERT INTO `room_chat_styles` VALUES ('23', 'staff', 'mod_tool');
  56. INSERT INTO `room_chat_styles` VALUES ('24', 'bats', '');
  57. INSERT INTO `room_chat_styles` VALUES ('25', 'console', '');
  58. INSERT INTO `room_chat_styles` VALUES ('26', '', '');
  59. INSERT INTO `room_chat_styles` VALUES ('27', 'storm', '');
  60. INSERT INTO `room_chat_styles` VALUES ('28', 'parrot', '');
  61. INSERT INTO `room_chat_styles` VALUES ('29', 'pirate', '');
  62. INSERT INTO `room_chat_styles` VALUES ('30', 'bot_guide', 'mod_tool');
  63. INSERT INTO `room_chat_styles` VALUES ('31', 'bot_rentable', 'mod_tool');
  64. INSERT INTO `room_chat_styles` VALUES ('32', 'skelestock', '');
  65. INSERT INTO `room_chat_styles` VALUES ('33', 'bot_frank', 'mod_tool');
  66. INSERT INTO `room_chat_styles` VALUES ('34', 'notification', 'mod_tool');
  67. INSERT INTO `room_chat_styles` VALUES ('35', 'goat', 'mod_tool');
  68. INSERT INTO `room_chat_styles` VALUES ('36', 'santa', 'mod_tool');
  69. INSERT INTO `room_chat_styles` VALUES ('37', '', 'mod_tool');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement