Files
tougao/sql/add_unsubscribed_to_expert.sql
2026-04-27 14:53:46 +08:00

10 lines
401 B
SQL
Raw Permalink 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.
-- 退订功能t_expert 增加退订标记
-- 用户已手动新增 unsubscribed 字段,以下为完整建议建表语句(含索引)
-- 0=正常 1=已退订;选人时统一过滤 unsubscribed=0
ALTER TABLE `t_expert`
ADD COLUMN `unsubscribed` TINYINT NOT NULL DEFAULT 0 COMMENT '0正常 1已退订' AFTER `state`;
ALTER TABLE `t_expert`
ADD INDEX `idx_unsubscribed` (`unsubscribed`);