Add Comand to Library
All checks were successful
/ release (push) Successful in 32s

This commit is contained in:
speatzle 2024-10-08 16:42:25 +02:00
parent f401127127
commit 011f97a3e6
5 changed files with 52 additions and 4 deletions

View file

@ -0,0 +1,3 @@
ALTER TABLE libraries
DROP IF EXISTS transcode_command,
DROP IF EXISTS health_command;

View file

@ -0,0 +1,3 @@
ALTER TABLE libraries
ADD transcode_command bigint REFERENCES ffmpeg_commands(id),
ADD health_command bigint REFERENCES ffmpeg_commands(id);