36459-vm/db/migrations/009_update_challenges.sql
2025-11-29 17:28:26 +00:00

10 lines
271 B
SQL

-- Migration: 009_update_challenges.sql
-- Description: Update all challenges to have 'kinesthetic' learning_style and 'easy' difficulty.
SET autocommit=0;
START TRANSACTION;
UPDATE `challenges` SET `learning_style` = 'kinesthetic', `difficulty` = 'beginner';
COMMIT;