create table order appeal
This commit is contained in:
parent
f5fd433de2
commit
fe3d4dc38b
13
1773647722_create_order_appeal.up.sql
Normal file
13
1773647722_create_order_appeal.up.sql
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
CREATE TABLE `health`.`ufutx_order_appeal` (
|
||||||
|
`id` BIGINT NOT NULL AUTO_INCREMENT,
|
||||||
|
`apply_user_id` BIGINT NOT NULL COMMENT "申请人id",
|
||||||
|
`name` VARCHAR(50) NOT NULL COMMENT '姓名',
|
||||||
|
`mobile` VARCHAR(50) NOT NULL COMMENT '手机号',
|
||||||
|
`vouchers` JSON DEFAULT NULL COMMENT '凭证',
|
||||||
|
`referrer_user_id` INTEGER DEFAULT NULL COMMENT '推荐人id',
|
||||||
|
`assistant_user_id` INTEGER DEFAULT NULL COMMENT '助攻人',
|
||||||
|
`status` INTEGER DEFAULT 0 COMMENT '状态: 0:未审核,-1:拒绝,1:同意',
|
||||||
|
`created_at` TIMESTAMP NULL DEFAULT NULL,
|
||||||
|
`updated_at` TIMESTAMP NULL DEFAULT NULL,
|
||||||
|
PRIMARY KEY (`id`)
|
||||||
|
) ENGINE = InnoDB COMMENT = '订单申诉表';
|
||||||
Loading…
Reference in New Issue
Block a user