Files
soroban-abacus-flashcards/apps/web/drizzle/0076_charming_rachel_grey.sql
Thomas Hallock 269321b4c4 feat(flowchart): add animated background tiles to FlowchartCards
- Add AnimatedProblemTile component with MathDisplay for proper math rendering
- Add AnimatedBackgroundTiles grid component for card backgrounds
- Update FlowchartCard to accept flowchart + examples props
- Generate examples client-side for both hardcoded and database flowcharts
- Use same formatting system (formatProblemDisplay + MathDisplay) as modal

Also includes:
- Fix migration 0076 timestamp ordering issue (linkedPublishedId column)
- Add migration-timestamp-fix skill documenting common drizzle-kit issue
- Update CLAUDE.md with migration timestamp ordering guidance
- Various flowchart workshop and vision training improvements

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-20 10:10:49 -06:00

4 lines
248 B
SQL

-- Custom SQL migration file, put your code below! --
-- Add linkedPublishedId to workshop_sessions for edit-in-place workflow
ALTER TABLE `workshop_sessions` ADD `linked_published_id` text REFERENCES `teacher_flowcharts`(`id`) ON DELETE SET NULL;