change_ufutx_s2_commissions

This commit is contained in:
tian 2026-02-05 15:42:44 +08:00
parent c58f4f14bf
commit 08e8057402

View File

@ -0,0 +1 @@
ALTER TABLE `ufutx_s2_commissions` ADD `notice_send_time` TIMESTAMP NULL COMMENT '通知发送时间' AFTER `status`, ADD `notice_status` TINYINT NOT NULL DEFAULT '1' COMMENT '1=未知, 2=已确认' AFTER `notice_send_time`, ADD `notice_type` TINYINT NOT NULL DEFAULT '0' COMMENT '0=未确认, 1=短信, 2=app用户端, 3=app商务端, 4=人工通知' AFTER `notice_status`, ADD `notice_submit_time` TIMESTAMP NULL COMMENT '首次确认时间' AFTER `notice_type`, ADD `notice_human_time` TIMESTAMP NULL COMMENT '人工通知时间' AFTER `notice_submit_time`;