Files
xxk-proxy/java/sql/mysql/xxk_distribution_relation_nullable_upgrade.sql
2026-06-11 10:31:24 +08:00

9 lines
486 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.
-- 分销关系表 user_id 可空兼容升级脚本
-- 说明:
-- 1. 历史设计中 xxk_distribution_relation 仅面向 sys_useruser_id 为 NOT NULL。
-- 2. 会员体系接入后,会员邀请关系只依赖 member_user_id / parent_member_user_id。
-- 3. 若继续要求 user_id 非空,会员注册或邀请码绑定时会因未传 sys_user.user_id 而写库失败。
ALTER TABLE `xxk_distribution_relation`
MODIFY COLUMN `user_id` BIGINT NULL COMMENT '当前用户ID';