Files
digital-psychology/apps/api/migrations/000019_mbti_label.up.sql
T
jackyu66gitandCursor 89756f65b4 feat(ECR-012–016): 合规、题库、时辰刷新、头像、MBTI OEJTS 与埋点
落地输入合规、探索题库、报告日/时辰刷新、账号头像、OEJTS 量表,并补齐 H5 埋点与 Admin 漏斗;同步 ESS 工件、切至自建 Git、清理 GitHub Actions。

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-08-13 01:27:58 +08:00

12 lines
378 B
SQL

-- Rename mbti-lite display to MBTI测试 (ECR-adjacent · explore-test R9)
UPDATE scales
SET title = 'MBTI测试',
description = '了解能量来源与决策偏好的轻量探索。',
updated_at = now()
WHERE slug = 'mbti-lite' AND deleted_at IS NULL;
UPDATE home_tools
SET label = 'MBTI测试', updated_at = now()
WHERE path = '/scales/mbti-lite' AND icon = 'mbti';