-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcard.sql
More file actions
32 lines (27 loc) · 892 Bytes
/
card.sql
File metadata and controls
32 lines (27 loc) · 892 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/*
Navicat MySQL Data Transfer
Source Server : 172.16.10.87
Source Server Version : 50527
Source Host : 172.16.10.87:3306
Source Database : card
Target Server Type : MYSQL
Target Server Version : 50527
File Encoding : 65001
Date: 2014-01-06 14:15:57
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for `card`
-- ----------------------------
DROP TABLE IF EXISTS `card`;
CREATE TABLE `card` (
`card_id` char(32) CHARACTER SET utf8 NOT NULL,
`type` smallint(6) NOT NULL,
`server` varchar(256) CHARACTER SET utf8 DEFAULT NULL,
`dbid` bigint(20) DEFAULT NULL,
`create_item_id` bigint(20) NOT NULL,
`create_time` int(11) DEFAULT NULL,
PRIMARY KEY (`card_id`),
KEY `index_server` (`server`(255)),
KEY `index_dbid` (`dbid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin;