Files
MBTI_wang/api/database/migrations/add_enterprise_permissions.sql

6 lines
327 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.

-- 企业权限字段JSON 存储各功能开关face/mbti/pdp/disc/distribution
-- 默认全开,未设置时后端视为全部允许
ALTER TABLE `mbti_enterprises`
ADD COLUMN `permissions` json NULL COMMENT '功能权限开关 {"face":true,"mbti":true,"pdp":true,"disc":true,"distribution":true}'
AFTER `status`;