forked from wzzhang-HIT/defect-mining
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefect-mining.sql
More file actions
34 lines (28 loc) · 886 Bytes
/
Copy pathdefect-mining.sql
File metadata and controls
34 lines (28 loc) · 886 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
33
34
/*
Navicat MySQL Data Transfer
Source Server : 192.168.0.103
Source Server Type : MySQL
Source Server Version : 50555
Source Host : 192.168.0.103
Source Database : defect-mining
Target Server Type : MySQL
Target Server Version : 50555
File Encoding : utf-8
Date: 06/01/2017 05:01:17 AM
*/
SET NAMES utf8;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for `binarys`
-- ----------------------------
DROP TABLE IF EXISTS `binarys`;
CREATE TABLE `binarys` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`binary_name` varchar(255) DEFAULT NULL,
`file_size` float DEFAULT NULL,
`upload_datetime` datetime DEFAULT NULL,
`status` int(255) DEFAULT NULL,
`update_datetime` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=latin1;
SET FOREIGN_KEY_CHECKS = 1;