10 lines
271 B
SQL
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;
|