12 lines
283 B
SQL
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;
|
|
|