From fb0e788eb4ce1034be74d938a96d53a05ffc531a Mon Sep 17 00:00:00 2001 From: tian <156691306@qq.com> Date: Wed, 15 Oct 2025 17:22:47 +0800 Subject: [PATCH] create_ufutx_orders_extend --- 1760520162_create_ufutx_orders_extend.up.sql | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 1760520162_create_ufutx_orders_extend.up.sql 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