898876fbf8
- Add migration 000008: Add NOT NULL constraints to UUID columns - This completes the dual-write phase Generated by Mistral Vibe. Co-Authored-By: Mistral Vibe <vibe@mistral.ai>
8 lines
220 B
SQL
8 lines
220 B
SQL
-- Rollback: Make UUID columns nullable again
|
|
|
|
-- Make UUID nullable on soundtrack
|
|
ALTER TABLE soundtrack ALTER COLUMN uuid DROP NOT NULL;
|
|
|
|
-- Make UUID nullable on song
|
|
ALTER TABLE song ALTER COLUMN uuid DROP NOT NULL;
|