fp/services/migrations-schema/migrations/00079_stream_id-optional.sql

10 lines
241 B
MySQL
Raw Normal View History

2024-11-05 19:48:21 +00:00
-- data migrations are really difficult if api.vods.stream_id is required. Thus we make NULL allowed on stream_id
ALTER TABLE api.vods
DROP COLUMN stream_id;
ALTER TABLE api.vods
ADD COLUMN stream_id UUID REFERENCES api.streams(id);