fixup! Add mime_codec to subtitles in the transcoder

This commit is contained in:
2025-07-26 00:51:40 +02:00
parent 84a855602e
commit 7085a68733
2 changed files with 10 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
begin;
alter table subtitles drop column mime_codec;
commit;

View File

@@ -0,0 +1,5 @@
begin;
alter table subtitles add column mime_codec varchar(256) default null;
commit;