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

12 lines
283 B
SQL

-- Migration: 004_update_hello_world_challenge.sql
-- Timestamp: 2025-11-29 12:35:00 UTC
-- Description: Update hello world challenge with expected output.
SET autocommit=0;
START TRANSACTION;
UPDATE `challenges` SET `expected_output` = 'Hello, World!\n' WHERE `id` = 1;
COMMIT;