9 lines
486 B
SQL
9 lines
486 B
SQL
-- 分销关系表 user_id 可空兼容升级脚本
|
||
-- 说明:
|
||
-- 1. 历史设计中 xxk_distribution_relation 仅面向 sys_user,user_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';
|