Files
english/supabase/migrations/005_nullable_test_id.sql
2026-04-15 00:41:02 +07:00

4 lines
201 B
SQL

-- Migration 005: Make test_id nullable on user_test_attempt
-- Practice sessions (part-based) don't belong to a specific test record.
ALTER TABLE user_test_attempt ALTER COLUMN test_id DROP NOT NULL;