-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblogdb.sql
More file actions
39 lines (33 loc) · 1.03 KB
/
blogdb.sql
File metadata and controls
39 lines (33 loc) · 1.03 KB
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
/*
Navicat MySQL Data Transfer
Source Server : host
Source Server Version : 50149
Source Host : localhost:3306
Source Database : blogdb
Target Server Type : MYSQL
Target Server Version : 50149
File Encoding : 65001
Date: 2020-05-09 14:35:21
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for articleinfo
-- ----------------------------
DROP TABLE IF EXISTS `articleinfo`;
CREATE TABLE `articleinfo` (
`id` int(6) unsigned zerofill NOT NULL AUTO_INCREMENT,
`title` char(30) NOT NULL,
`fileDesc` char(100) NOT NULL,
`path` char(100) NOT NULL,
`type` char(10) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Table structure for classification
-- ----------------------------
DROP TABLE IF EXISTS `classification`;
CREATE TABLE `classification` (
`id` tinyint(4) unsigned NOT NULL AUTO_INCREMENT,
`type` char(10) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8;