· 8 years ago · Dec 13, 2017, 05:40 PM
1/*
2Navicat MySQL Data Transfer
3
4Source Server : Altric
5Source Server Version : 50556
6Source Host : localhost:3306
7Source Database : altric_player
8
9Target Server Type : MYSQL
10Target Server Version : 50556
11File Encoding : 65001
12
13Date: 2017-12-13 18:37:33
14*/
15
16SET FOREIGN_KEY_CHECKS=0;
17
18-- ----------------------------
19-- Table structure for refine_proto
20-- ----------------------------
21DROP TABLE IF EXISTS `refine_proto`;
22CREATE TABLE `refine_proto` (
23 `id` int(11) NOT NULL AUTO_INCREMENT,
24 `vnum0` int(10) unsigned NOT NULL DEFAULT '0',
25 `count0` smallint(6) NOT NULL DEFAULT '0',
26 `vnum1` int(10) unsigned NOT NULL DEFAULT '0',
27 `count1` smallint(6) NOT NULL DEFAULT '0',
28 `vnum2` int(10) unsigned NOT NULL DEFAULT '0',
29 `count2` smallint(6) NOT NULL DEFAULT '0',
30 `vnum3` int(10) unsigned NOT NULL DEFAULT '0',
31 `count3` smallint(6) NOT NULL DEFAULT '0',
32 `vnum4` int(10) unsigned NOT NULL DEFAULT '0',
33 `count4` smallint(6) NOT NULL DEFAULT '0',
34 `cost` int(11) NOT NULL DEFAULT '0',
35 `src_vnum` int(10) unsigned NOT NULL DEFAULT '0',
36 `result_vnum` int(10) unsigned NOT NULL DEFAULT '0',
37 `prob` smallint(6) NOT NULL DEFAULT '100',
38 PRIMARY KEY (`id`)
39) ENGINE=MyISAM AUTO_INCREMENT=30510 DEFAULT CHARSET=latin1;
40SET FOREIGN_KEY_CHECKS=1;