dbpatch/202410/重庆机具/20241031_enterprise_driver_...

8 lines
769 B
SQL
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

CREATE TABLE `enterprise_driver_file` (
`id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键',
`receive_detail_id` bigint(20) NOT NULL COMMENT '推送详情id',
`file_name` varchar(200) DEFAULT NULL COMMENT '附件名称',
`file_url` varchar(200) NOT NULL COMMENT '附件地址',
`file_type` tinyint(4) NOT NULL COMMENT '附件类型0反面1正面2持证信息',
PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='机手附件信息表';