create_ufutx_orders_extend
This commit is contained in:
parent
616fadd50f
commit
fb0e788eb4
9
1760520162_create_ufutx_orders_extend.up.sql
Normal file
9
1760520162_create_ufutx_orders_extend.up.sql
Normal file
@ -0,0 +1,9 @@
|
||||
CREATE TABLE `health`.`ufutx_orders_extend` (
|
||||
`id` BIGINT NOT NULL AUTO_INCREMENT ,
|
||||
`dma_id` BIGINT NOT NULL ,
|
||||
`commissions_status` TINYINT NOT NULL DEFAULT '1' COMMENT '1=未知,2=不可分润,3=可分润未分,4=可分润已分' ,
|
||||
`commissions_count` INT NOT NULL DEFAULT '0' COMMENT '分润数量' ,
|
||||
`commissions_withdraw_count` INT NOT NULL DEFAULT '0' COMMENT '提现数量' ,
|
||||
PRIMARY KEY (`id`),
|
||||
INDEX (`dma_id`)
|
||||
) ENGINE = InnoDB COMMENT = 'dma订单扩展表';
|
||||
Loading…
Reference in New Issue
Block a user