migrate/1770277348_change_ufutx_s2_commissions.up.sql
2026-02-05 15:42:44 +08:00

1 line
560 B
SQL

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`;