dma流程图表修改

This commit is contained in:
buke 2024-10-31 14:24:42 +08:00
parent 12158a0ad9
commit 2b8d0a4e6c
2 changed files with 5 additions and 0 deletions

View File

@ -0,0 +1,3 @@
ALTER TABLE `ufutx_dma_process_log`
ADD COLUMN `operate_user_id` int(11) NULL COMMENT '操作人id' AFTER `remark`,
ADD COLUMN `role` tinyint(4) NULL COMMENT '角色 0:用户 1:主教练 2:副教练 3:客服 4:后台' AFTER `operate_user_id`;

View File

@ -0,0 +1,2 @@
ALTER TABLE `ufutx_dma_process_log`
MODIFY COLUMN `role` varchar(32) NULL DEFAULT NULL COMMENT '角色多角色,分隔 0:用户 1:主教练 2:副教练 3:客服 4:后台,' AFTER `operate_user_id`;