- 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>
4 lines
248 B
SQL
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;
|