落地输入合规、探索题库、报告日/时辰刷新、账号头像、OEJTS 量表,并补齐 H5 埋点与 Admin 漏斗;同步 ESS 工件、切至自建 Git、清理 GitHub Actions。 Co-authored-by: Cursor <cursoragent@cursor.com>
11 lines
363 B
SQL
11 lines
363 B
SQL
-- revert OEJTS seed (best-effort soft-delete full scale)
|
|
|
|
UPDATE scale_questions SET deleted_at = now(), updated_at = now()
|
|
WHERE scale_id IN (
|
|
'22222222-2222-2222-2222-222222222201',
|
|
'22222222-2222-2222-2222-222222222210'
|
|
) AND deleted_at IS NULL;
|
|
|
|
UPDATE scales SET deleted_at = now(), updated_at = now()
|
|
WHERE id = '22222222-2222-2222-2222-222222222210';
|