diff --git a/1760520162_create_ufutx_orders_extend.up.sql b/1760520162_create_ufutx_orders_extend.up.sql new file mode 100644 index 0000000..4cfe543 --- /dev/null +++ b/1760520162_create_ufutx_orders_extend.up.sql @@ -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订单扩展表'; \ No newline at end of file