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
213 B
SQL
8 lines
213 B
SQL
-- Migration: Make UUID columns NOT NULL
|
|
|
|
-- Make UUID required on soundtrack
|
|
ALTER TABLE soundtrack ALTER COLUMN uuid SET NOT NULL;
|
|
|
|
-- Make UUID required on song
|
|
ALTER TABLE song ALTER COLUMN uuid SET NOT NULL;
|