增加互评表

This commit is contained in:
buke 2024-11-15 14:16:37 +08:00
parent 0697d331be
commit 7b972fa715

View File

@ -0,0 +1,13 @@
CREATE TABLE `ufutx_dma_role_evaluate`
(
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`order_id` int(11) NOT NULL COMMENT '订单id',
`user_id` int(11) NOT NULL COMMENT '评价人id',
`user_role` int(11) NOT NULL DEFAULT '0' COMMENT '评价人角色',
`role` int(11) NOT NULL DEFAULT '0' COMMENT '被评价角色类型',
`content` text COMMENT '评价内容',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `user_id` (`user_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='dma互评表';