create work log

This commit is contained in:
Hankin 2026-04-03 11:50:13 +08:00
parent 23d793454f
commit 390bd112be

View File

@ -0,0 +1,10 @@
CREATE TABLE `service`.`ufutx_work_log` (
`id` INT NOT NULL AUTO_INCREMENT,
`work_id` INT NOT NULL COMMENT "工单id",
`user_id` INT NOT NULL COMMENT "用户id",
`text` text DEFAULT NULL COMMENT '文本',
`pic` JSON DEFAULT NULL COMMENT "图片",
`created_at` TIMESTAMP NULL DEFAULT NULL,
`updated_at` TIMESTAMP NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE = InnoDB COMMENT = '工单记录';