4 lines
201 B
SQL
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;
|