Files
tougao/sql/add_user_id_to_promotion_email_log.sql
2026-04-29 15:07:56 +08:00

12 lines
510 B
SQL
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
-- 推广邮件日志:增加内部受众 user_id 列
-- expert_type=5外部 expert 库expert_id 有值user_id=0
-- expert_type∈{1,2,3,4}(内部主编/编委/青年编委/作者user_id 有值expert_id=0
ALTER TABLE `t_promotion_email_log`
ADD COLUMN `user_id` INT NOT NULL DEFAULT 0
COMMENT '内部受众 user_idexpert_type∈{1..4} 时填,=5 时为 0'
AFTER `expert_id`;
ALTER TABLE `t_promotion_email_log`
ADD INDEX `idx_user_send_time` (`user_id`, `send_time`);