Files
MusicServer/internal/db/migrations/000008_make_uuid_required.up.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
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;