-- Add enable_training column to studies table
-- This allows researchers to activate an optional interactive pre-study training tutorial
-- The training teaches participants the drag-and-drop mechanics with 2 simple practice cards

ALTER TABLE studies 
ADD COLUMN enable_training TINYINT(1) NOT NULL DEFAULT 0
COMMENT 'Enable interactive drag-and-drop training tutorial before the study';

