From 62ec1974d4e9cb4c74096fce713616e472f13e6c Mon Sep 17 00:00:00 2001 From: "453530270@qq.com" Date: Tue, 30 Apr 2024 18:05:53 +0800 Subject: [PATCH] =?UTF-8?q?=E6=95=B0=E6=8D=AE=E5=BA=93=E7=BB=93=E6=9E=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- wbfs.sql | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 wbfs.sql diff --git a/wbfs.sql b/wbfs.sql new file mode 100644 index 0000000..a26bc57 --- /dev/null +++ b/wbfs.sql @@ -0,0 +1,35 @@ +/* + Navicat Premium Data Transfer + + Source Server : 本地 + Source Server Type : MySQL + Source Server Version : 50726 + Source Host : localhost:3306 + Source Schema : wbfs + + Target Server Type : MySQL + Target Server Version : 50726 + File Encoding : 65001 + + Date: 30/04/2024 18:05:10 +*/ + +SET NAMES utf8mb4; +SET FOREIGN_KEY_CHECKS = 0; + +-- ---------------------------- +-- Table structure for wbfile +-- ---------------------------- +DROP TABLE IF EXISTS `wbfile`; +CREATE TABLE `wbfile` ( + `id` bigint(24) NOT NULL AUTO_INCREMENT, + `filename` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '文件名', + `filehash` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '文件的hash', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = MyISAM AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '文件信息表' ROW_FORMAT = Dynamic; + +-- ---------------------------- +-- Records of wbfile +-- ---------------------------- + +SET FOREIGN_KEY_CHECKS = 1;