feat(education): complete Flyway migration and atomic submit

This commit is contained in:
2026-07-30 12:06:55 +08:00
parent ce02f8acb4
commit 79a5799502
228 changed files with 32551 additions and 1376 deletions

View File

@@ -0,0 +1,13 @@
-- =============================================
-- Education 模块 — 统一幂等表 回滚
-- Migration: 009 回滚
-- =============================================
DROP TABLE IF EXISTS education_idempotency;
-- Recreate the original split tables from 003 + 004 migrations if needed:
-- (restore from backup or re-run 003 and 004 DDL scripts)
-- Remove review_fingerprint column
ALTER TABLE education_practice_session
DROP COLUMN IF EXISTS review_fingerprint;