落地输入合规、探索题库、报告日/时辰刷新、账号头像、OEJTS 量表,并补齐 H5 埋点与 Admin 漏斗;同步 ESS 工件、切至自建 Git、清理 GitHub Actions。 Co-authored-by: Cursor <cursoragent@cursor.com>
12 lines
378 B
SQL
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';
|