增加互评表
This commit is contained in:
parent
0697d331be
commit
7b972fa715
13
1731642572_create_dma_role_evaluate.up.sql
Normal file
13
1731642572_create_dma_role_evaluate.up.sql
Normal 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互评表';
|
Loading…
Reference in New Issue
Block a user