-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathrain_ai.sql
47 lines (41 loc) · 1.26 KB
/
rain_ai.sql
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*
Navicat MySQL Data Transfer
Source Server : 本地数据库
Source Server Version : 50547
Source Host : localhost:3306
Source Database : rain
Target Server Type : MYSQL
Target Server Version : 50547
File Encoding : 65001
Date: 2018-04-23 13:29:37
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for `rain_ai`
-- ----------------------------
DROP TABLE IF EXISTS `rain_ai`;
CREATE TABLE `rain_ai` (
`u_id` int(11) NOT NULL AUTO_INCREMENT,
`state` int(11) DEFAULT NULL,
`date` char(255) DEFAULT NULL,
`face1` int(11) DEFAULT NULL,
`face2` int(11) DEFAULT NULL,
`sound` int(11) DEFAULT NULL,
`ocr` int(11) DEFAULT NULL,
`image1` int(11) DEFAULT NULL,
`image2` int(11) DEFAULT NULL,
`image3` int(11) DEFAULT NULL,
`image4` int(11) DEFAULT NULL,
`text1` int(11) DEFAULT NULL,
`text2` int(11) DEFAULT NULL,
`text3` int(11) DEFAULT NULL,
`text4` int(11) DEFAULT NULL,
`text5` int(11) DEFAULT NULL,
`text6` int(11) DEFAULT NULL,
`text7` int(11) DEFAULT NULL,
`text8` int(11) DEFAULT NULL,
PRIMARY KEY (`u_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of rain_ai
-- ----------------------------