Files
MusicServer/internal/db/migrations/000008_make_uuid_required.down.sql
T
Sansan 898876fbf8 step 3: Make UUID columns NOT NULL
- 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>
2026-06-01 22:40:38 +02:00

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;