fixup! Add mime_codec to subtitles in the transcoder

This commit is contained in:
Zoe Roux 2025-07-26 00:51:40 +02:00
parent 15f82661c3
commit 16013766e0
No known key found for this signature in database
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;