11 lines
296 B
SQL
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;
|