diff --git a/1730355520_change_table_process_log.up.sql b/1730355520_change_table_process_log.up.sql new file mode 100644 index 0000000..b1d6a3a --- /dev/null +++ b/1730355520_change_table_process_log.up.sql @@ -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`; \ No newline at end of file diff --git a/1730355761_change_table_process_log1.up.sql b/1730355761_change_table_process_log1.up.sql new file mode 100644 index 0000000..37fb45d --- /dev/null +++ b/1730355761_change_table_process_log1.up.sql @@ -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`; \ No newline at end of file