fp/services/migrations-schema/migrations/00137_add-vods-fk-to-stream...

4 lines
127 B
SQL

ALTER TABLE api.vods
ADD CONSTRAINT vods_stream_fk FOREIGN KEY (stream_id)
REFERENCES api.streams (id)
ON DELETE CASCADE;