fp/services/migrations-schema/migrations/00136_add-uuid-to-streams.sql

9 lines
199 B
MySQL
Raw Normal View History

2024-12-16 20:39:23 +00:00
ALTER TABLE IF EXISTS api.streams
ADD COLUMN IF NOT EXISTS uuid UUID
DEFAULT gen_random_uuid();
ALTER TABLE IF EXISTS api.vods
ADD COLUMN IF NOT EXISTS uuid UUID
DEFAULT gen_random_uuid();