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

11 lines
296 B
SQL

-- Migration: 003_add_expected_output_to_challenges.sql
-- Timestamp: 2025-11-29 12:30:00 UTC
-- Description: Add expected_output column to challenges table.
SET autocommit=0;
START TRANSACTION;
ALTER TABLE `challenges` ADD `expected_output` TEXT DEFAULT NULL AFTER `unit_tests_json`;
COMMIT;