fp/services/migrations-schema/migrations/00046_segments_vod_links-ma...

11 lines
364 B
MySQL
Raw Normal View History

2024-08-31 10:42:28 +00:00
-- In the last migration, I accidentally created a many-to-many relationship.
-- What I actually need is a many-to-one relationship.
DROP TABLE api.segments_vod_links;
CREATE TABLE api.segments_vod_links (
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
vod_id UUID NOT NULL REFERENCES api.vods(id),
segment_id UUID NOT NULL REFERENCES api.segments(id)
);