Advertisement
Guest User

Untitled

a guest
Jan 24th, 2020
399
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.83 KB | None | 0 0
  1. /*
  2. MySQL Backup
  3. Source Server Version: 5.1.54
  4. Source Database: mu_serverinfo
  5. Date: 29/05/2018 14:29:12
  6. */
  7.  
  8. SET FOREIGN_KEY_CHECKS=0;
  9.  
  10. -- ----------------------------
  11. -- Table structure for `t_allow_reject_userlist`
  12. -- ----------------------------
  13. DROP TABLE IF EXISTS `t_allow_reject_userlist`;
  14. CREATE TABLE `t_allow_reject_userlist` (
  15. `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  16. `userId` varchar(50) NOT NULL,
  17. `flag` int(4) NOT NULL DEFAULT '0',
  18. PRIMARY KEY (`id`)
  19. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  20.  
  21. -- ----------------------------
  22. -- Table structure for `t_config`
  23. -- ----------------------------
  24. DROP TABLE IF EXISTS `t_config`;
  25. CREATE TABLE `t_config` (
  26. `paramname` char(32) NOT NULL,
  27. `paramvalue` varchar(255) NOT NULL,
  28. UNIQUE KEY `paramname` (`paramname`) USING BTREE
  29. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  30.  
  31. -- ----------------------------
  32. -- Table structure for `t_merchant`
  33. -- ----------------------------
  34. DROP TABLE IF EXISTS `t_merchant`;
  35. CREATE TABLE `t_merchant` (
  36. `id` int(11) NOT NULL AUTO_INCREMENT,
  37. `username` varchar(32) DEFAULT NULL,
  38. `password` varchar(255) DEFAULT NULL,
  39. `lasttime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  40. `fullname` varchar(255) DEFAULT NULL,
  41. `avatar` varchar(32) NOT NULL DEFAULT '',
  42. `credit` int(11) unsigned NOT NULL DEFAULT '0',
  43. `gross` int(11) unsigned NOT NULL DEFAULT '0',
  44. `status` int(4) unsigned NOT NULL DEFAULT '0',
  45. PRIMARY KEY (`id`)
  46. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  47.  
  48. -- ----------------------------
  49. -- Table structure for `t_merchant_log`
  50. -- ----------------------------
  51. DROP TABLE IF EXISTS `t_merchant_log`;
  52. CREATE TABLE `t_merchant_log` (
  53. `id` int(10) NOT NULL AUTO_INCREMENT,
  54. `merchant` varchar(32) NOT NULL,
  55. `user` varchar(32) NOT NULL,
  56. `amount` int(11) NOT NULL,
  57. `note` varchar(64) DEFAULT NULL,
  58. `time` datetime NOT NULL,
  59. `status` varchar(32) DEFAULT 'success',
  60. PRIMARY KEY (`id`)
  61. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  62.  
  63. -- ----------------------------
  64. -- Table structure for `t_plat_chongzhi`
  65. -- ----------------------------
  66. DROP TABLE IF EXISTS `t_plat_chongzhi`;
  67. CREATE TABLE `t_plat_chongzhi` (
  68. `Id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  69. `ptid` int(11) NOT NULL DEFAULT '0' COMMENT 'ƽ̨ID',
  70. `serverid` int(11) NOT NULL DEFAULT '0' COMMENT '·þÎñÆ÷±àºÅ',
  71. `amount` int(11) NOT NULL DEFAULT '0' COMMENT '³äÖµ½ð¶î',
  72. `userid` char(64) NOT NULL COMMENT '³äÖµÕ˺Å',
  73. `inputtime` datetime NOT NULL COMMENT '³äֵʱ¼ä',
  74. `order_no` char(64) NOT NULL COMMENT '³äÖµ±àºÅ',
  75. `plat_order_no` char(64) NOT NULL DEFAULT '' COMMENT 'ƽ̨³äÖµÁ÷Ë®ºÅ',
  76. `state` char(64) NOT NULL COMMENT '±¾µ¥³äֵ״̬',
  77. `pre_amount` int(11) DEFAULT '0' COMMENT '´ý³äÖµ½ð¶î',
  78. `ip` varchar(30) DEFAULT '',
  79. `platname` varchar(30) DEFAULT '',
  80. `roleid` int(11) DEFAULT NULL,
  81. `rolename` char(32) DEFAULT NULL,
  82. PRIMARY KEY (`Id`),
  83. UNIQUE KEY `ix_orderno` (`order_no`),
  84. KEY `ix_inputtime` (`inputtime`)
  85. ) ENGINE=MyISAM AUTO_INCREMENT=344 DEFAULT CHARSET=utf8 COMMENT='ƽ̨³äÖµ×ܱí';
  86.  
  87. -- ----------------------------
  88. -- Table structure for `t_reload_admin_log`
  89. -- ----------------------------
  90. DROP TABLE IF EXISTS `t_reload_admin_log`;
  91. CREATE TABLE `t_reload_admin_log` (
  92. `id` int(10) NOT NULL AUTO_INCREMENT,
  93. `admin_username` varchar(32) NOT NULL,
  94. `buyer_username` varchar(32) NOT NULL,
  95. `amount` int(11) NOT NULL,
  96. `method` varchar(64) NOT NULL,
  97. `time` datetime NOT NULL,
  98. `status` varchar(32) NOT NULL,
  99. `note` varchar(1024) DEFAULT NULL,
  100. PRIMARY KEY (`id`)
  101. ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
  102.  
  103. -- ----------------------------
  104. -- Table structure for `t_reload_orders`
  105. -- ----------------------------
  106. DROP TABLE IF EXISTS `t_reload_orders`;
  107. CREATE TABLE `t_reload_orders` (
  108. `id` int(10) NOT NULL AUTO_INCREMENT,
  109. `username` varchar(32) NOT NULL,
  110. `amount` int(11) NOT NULL,
  111. `method` varchar(64) NOT NULL,
  112. `time` datetime NOT NULL,
  113. `status` char(32) NOT NULL,
  114. `token` text,
  115. `itemname` varchar(255) DEFAULT NULL,
  116. `itemdesc` varchar(255) DEFAULT NULL,
  117. `qty` int(11) DEFAULT '0',
  118. `emoney` int(11) DEFAULT '0',
  119. PRIMARY KEY (`id`)
  120. ) ENGINE=MyISAM AUTO_INCREMENT=45 DEFAULT CHARSET=utf8;
  121.  
  122. -- ----------------------------
  123. -- Table structure for `t_reload_paypal_log`
  124. -- ----------------------------
  125. DROP TABLE IF EXISTS `t_reload_paypal_log`;
  126. CREATE TABLE `t_reload_paypal_log` (
  127. `id` int(10) NOT NULL,
  128. `item_name` varchar(64) NOT NULL,
  129. `payment_type` varchar(64) NOT NULL DEFAULT '',
  130. `payment_date` varchar(500) NOT NULL DEFAULT '',
  131. `payment_status` varchar(64) NOT NULL DEFAULT '',
  132. `payer_status` varchar(64) NOT NULL DEFAULT '',
  133. `first_name` varchar(64) NOT NULL DEFAULT '',
  134. `last_name` varchar(64) NOT NULL DEFAULT '',
  135. `payer_email` varchar(64) NOT NULL,
  136. `address_name` varchar(64) NOT NULL,
  137. `address_country` varchar(64) NOT NULL DEFAULT '',
  138. `address_country_code` varchar(64) NOT NULL DEFAULT '',
  139. `address_zip` varchar(64) NOT NULL DEFAULT '',
  140. `address_state` varchar(64) NOT NULL DEFAULT '',
  141. `address_city` varchar(64) NOT NULL DEFAULT '',
  142. `address_street` varchar(64) NOT NULL DEFAULT '',
  143. `mc_currency` varchar(64) NOT NULL DEFAULT '',
  144. `mc_fee` varchar(64) NOT NULL DEFAULT '',
  145. `mc_gross` varchar(64) NOT NULL,
  146. `mc_gross_1` varchar(64) NOT NULL DEFAULT '',
  147. `custom` text NOT NULL,
  148. `log_repeat` int(11) NOT NULL DEFAULT '0',
  149. PRIMARY KEY (`id`)
  150. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  151.  
  152. -- ----------------------------
  153. -- Table structure for `t_serverdata`
  154. -- ----------------------------
  155. DROP TABLE IF EXISTS `t_serverdata`;
  156. CREATE TABLE `t_serverdata` (
  157. `Id` int(4) DEFAULT NULL,
  158. `ServerName` varchar(20) NOT NULL,
  159. `ServerURL` varchar(15) NOT NULL,
  160. `DatabaseName` varchar(20) DEFAULT NULL,
  161. `ServerPort` int(4) NOT NULL,
  162. `Status` int(4) NOT NULL,
  163. `OnlineNum` int(11) NOT NULL,
  164. `StartTime` datetime NOT NULL,
  165. `MaintainStarTime` datetime DEFAULT NULL,
  166. `MaintainTerminalTime` datetime DEFAULT NULL,
  167. `MaintainTxt` text,
  168. `Capacity` int(11) NOT NULL DEFAULT '100'
  169. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  170.  
  171. -- ----------------------------
  172. -- Table structure for `t_tranlog`
  173. -- ----------------------------
  174. DROP TABLE IF EXISTS `t_tranlog`;
  175. CREATE TABLE `t_tranlog` (
  176. `id` int(11) NOT NULL AUTO_INCREMENT,
  177. `uid` char(255) NOT NULL,
  178. `title` char(255) NOT NULL,
  179. `content` longtext NOT NULL,
  180. `timecreate` datetime DEFAULT NULL,
  181. PRIMARY KEY (`id`)
  182. ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
  183.  
  184. -- ----------------------------
  185. -- Table structure for `t_tranlogadmin`
  186. -- ----------------------------
  187. DROP TABLE IF EXISTS `t_tranlogadmin`;
  188. CREATE TABLE `t_tranlogadmin` (
  189. `id` int(11) NOT NULL AUTO_INCREMENT,
  190. `uid` char(255) NOT NULL,
  191. `title` char(255) NOT NULL,
  192. `content` longtext NOT NULL,
  193. `timecreate` datetime DEFAULT NULL,
  194. PRIMARY KEY (`id`)
  195. ) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=utf8;
  196.  
  197. -- ----------------------------
  198. -- Table structure for `t_users`
  199. -- ----------------------------
  200. DROP TABLE IF EXISTS `t_users`;
  201. CREATE TABLE `t_users` (
  202. `userid` int(11) unsigned NOT NULL AUTO_INCREMENT,
  203. `username` char(32) NOT NULL,
  204. `userpwd` char(32) NOT NULL,
  205. `realname` char(32) NOT NULL,
  206. `uid` char(20) DEFAULT NULL,
  207. `uquestion` tinyint(4) NOT NULL DEFAULT '0',
  208. `uanswer` char(32) DEFAULT NULL,
  209. `regtime` datetime NOT NULL,
  210. `lasttime` datetime NOT NULL,
  211. `modtime` datetime DEFAULT NULL,
  212. `isadult` tinyint(4) unsigned NOT NULL DEFAULT '0',
  213. `money` int(11) NOT NULL DEFAULT '0',
  214. `email` char(32) DEFAULT NULL,
  215. `phone` int(12) DEFAULT NULL,
  216. `IsFirstGiftcode` bit(1) NOT NULL,
  217. `CtrlCode` smallint(6) NOT NULL DEFAULT '0',
  218. `PaypalVerified` smallint(6) NOT NULL DEFAULT '0',
  219. `merchant_bal` smallint(6) NOT NULL DEFAULT '0',
  220. `invitecode` varchar(6) DEFAULT '',
  221. `referrercode` varchar(6) DEFAULT '',
  222. `referralrebate` int(11) DEFAULT '0',
  223. PRIMARY KEY (`userid`),
  224. UNIQUE KEY `username` (`username`),
  225. KEY `regtime` (`regtime`),
  226. KEY `lasttime` (`lasttime`),
  227. KEY `modtime` (`modtime`)
  228. ) ENGINE=MyISAM AUTO_INCREMENT=3009 DEFAULT CHARSET=utf8;
  229.  
  230. -- ----------------------------
  231. -- Table structure for `t_users_freebies`
  232. -- ----------------------------
  233. DROP TABLE IF EXISTS `t_users_freebies`;
  234. CREATE TABLE `t_users_freebies` (
  235. `id` int(11) NOT NULL AUTO_INCREMENT,
  236. `name` varchar(64) NOT NULL,
  237. `description` varchar(256) NOT NULL,
  238. `type` int(11) NOT NULL,
  239. `startdate` datetime DEFAULT NULL,
  240. `enddate` datetime DEFAULT NULL,
  241. `mailcode` text,
  242. PRIMARY KEY (`id`)
  243. ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
  244.  
  245. -- ----------------------------
  246. -- Table structure for `t_users_freebies_record`
  247. -- ----------------------------
  248. DROP TABLE IF EXISTS `t_users_freebies_record`;
  249. CREATE TABLE `t_users_freebies_record` (
  250. `userid` int(11) NOT NULL,
  251. `frebiesid` int(11) NOT NULL,
  252. `claimdate` datetime DEFAULT NULL,
  253. UNIQUE KEY `datakey` (`userid`,`frebiesid`)
  254. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  255.  
  256. -- ----------------------------
  257. -- Table structure for `t_users_log`
  258. -- ----------------------------
  259. DROP TABLE IF EXISTS `t_users_log`;
  260. CREATE TABLE `t_users_log` (
  261. `id` int(11) NOT NULL AUTO_INCREMENT,
  262. `userid` int(11) NOT NULL,
  263. `type` varchar(64) NOT NULL,
  264. `log` longtext NOT NULL,
  265. `timecreate` datetime DEFAULT NULL,
  266. PRIMARY KEY (`id`)
  267. ) ENGINE=MyISAM AUTO_INCREMENT=143 DEFAULT CHARSET=utf8;
  268.  
  269. -- ----------------------------
  270. -- Records
  271. -- ----------------------------
  272. INSERT INTO `t_config` VALUES ('BanUserOnPaypalChargeBack','1'), ('DBVersion','7.0'), ('ipn_paypal_business','test@gmail.com'), ('ipn_paypal_cancel_return','http://paypal-ipn-cancel-return'), ('ipn_paypal_currency_code','USD'), ('ipn_paypal_mode','debug'), ('ipn_paypal_notify_url','http://paypal-ipn-notify-url'), ('ipn_paypal_return','http://papal-ipn-url'), ('ipn_paypal_verifieduseronly','1'), ('IsAllPause','0'), ('LoadWalletRate','10'), ('MaintainStarTime','2017-01-20'), ('MaintainTerminalTime','2017-01-23 11:00:00'), ('MaintainTxt','维护好每人可获得40补偿,关注QQ群:456770961'), ('PaypalVirefiedUserOnly','1'), ('RechargeDiamondPackages','50,100,300,500,1000,3000,5000,10000'), ('RechargeMonthCardPrice','1000'), ('RechargeMonthCardValue','45'), ('ServerCount','6'), ('TopUpPackages','4:Platinum Pack:50:50|1:Starter Pack:5:0|2:Silver Pack:10:10|3:Gold Pack:25:20|'), ('TopUpRate','1000');
  273. INSERT INTO `t_serverdata` VALUES ('1','Live Beta','192.95.18.196','mu_game_1','3001','3','10','2017-06-21 02:07:31',NULL,NULL,NULL,'100');
  274. INSERT INTO `t_users` VALUES ('130','zythe','1a60b5052ac43dd0b2cbe9db61b98345','Nitoy Rotidua','192.168.1.250','2','escol','2017-12-13 10:23:41','2018-05-23 19:13:46',NULL,'0','3650','zythe.info@gmail.com',NULL,'\0','9','0','0','F5HZC9','','0');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement