【7.3.4】更新文件业务关联表

dev-8.1.9 v7.3.4
fengshuonan 2023-03-31 16:30:25 +08:00
parent 6d850dddce
commit de93ce62b9
1 changed files with 2 additions and 1 deletions

View File

@ -1,5 +1,6 @@
CREATE TABLE `sys_file_business` (
`file_business_id` bigint(20) NOT NULL COMMENT '主键id',
`business_code` varchar(255) NULL DEFAULT NULL COMMENT '业务的编码,业务自定义',
`business_id` bigint(20) NULL DEFAULT NULL COMMENT '业务主键id',
`file_id` bigint(20) NULL DEFAULT NULL COMMENT '关联文件表的id',
`download_count` int(11) NULL DEFAULT 0 COMMENT '下载次数',
@ -9,4 +10,4 @@ CREATE TABLE `sys_file_business` (
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '修改人',
`tenant_id` bigint(20) NULL DEFAULT NULL COMMENT '租户id',
PRIMARY KEY (`file_business_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '业务关联的文件' ROW_FORMAT = Dynamic;
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '业务关联的文件' ROW_FORMAT = Dynamic;