forked from WiliamQ/software_engineering
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcommon_file.sql
More file actions
34 lines (28 loc) · 900 Bytes
/
common_file.sql
File metadata and controls
34 lines (28 loc) · 900 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 Premium Data Transfer
Source Server : localhost_3306
Source Server Type : MySQL
Source Server Version : 50726
Source Host : localhost:3306
Source Schema : software_engineering
Target Server Type : MySQL
Target Server Version : 50726
File Encoding : 65001
Date: 30/05/2019 14:24:07
*/
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for common_file
-- ----------------------------
DROP TABLE IF EXISTS `common_file`;
CREATE TABLE `common_file` (
`file_id` int(10) NOT NULL AUTO_INCREMENT,
`file_name` varchar(255) DEFAULT NULL,
`file_type` int(10) DEFAULT NULL,
`file_address` varchar(255) DEFAULT NULL,
`release_time` datetime DEFAULT NULL,
`download_time` int(10) DEFAULT NULL,
PRIMARY KEY (`file_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
SET FOREIGN_KEY_CHECKS = 1;