fp/services/migrations-schema/migrations/00057_recreate-vod_create.sql

9 lines
261 B
MySQL
Raw Normal View History

2024-09-16 16:31:51 +00:00
-- we need to re-create this because I think a CASCADE deleted it.
-- when a vod is created, we add a 'record' job in graphile-worker
CREATE TRIGGER vod_create
AFTER INSERT ON api.vods
FOR EACH ROW
EXECUTE PROCEDURE public.tg__add_record_job('record');