forked from zhengzongsheng/pdf_annotate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebsite.sql
More file actions
33 lines (27 loc) · 814 Bytes
/
website.sql
File metadata and controls
33 lines (27 loc) · 814 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
/*
Navicat MySQL Data Transfer
Source Server : zzs
Source Server Version : 50720
Source Host : localhost:3306
Source Database : website
Target Server Type : MYSQL
Target Server Version : 50720
File Encoding : 65001
Date: 2018-06-19 04:36:57
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for `pdfdata`
-- ----------------------------
DROP TABLE IF EXISTS `pdfdata`;
CREATE TABLE `pdfdata` (
`ID` int(50) NOT NULL AUTO_INCREMENT,
`Name_File` varchar(100) NOT NULL,
`PDF_Number` int(50) DEFAULT NULL,
`Img_Width` int(20) DEFAULT NULL,
`Img_Height` int(20) DEFAULT NULL,
PRIMARY KEY (`ID`)
) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of pdfdata
-- ----------------------------