ureport数据库

This commit is contained in:
DESKTOP-J7ED0MB\yinjinlu 2022-10-17 22:47:49 +08:00
parent 2e9cea666f
commit c19bd17dff

View File

@ -0,0 +1,17 @@
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for ureport_file_tbl
-- ----------------------------
DROP TABLE IF EXISTS `ureport_file_tbl`;
CREATE TABLE `ureport_file_tbl` (
`id_` int(11) NOT NULL AUTO_INCREMENT,
`name_` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
`content_` mediumblob NULL,
`create_time_` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
`update_time_` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id_`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 6 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic;
SET FOREIGN_KEY_CHECKS = 1;